11 lines
289 B
Python
11 lines
289 B
Python
|
from aiogram import types
|
||
|
from aiogram.filters.command import Command
|
||
|
|
||
|
from src.dispatcher import dispatcher
|
||
|
|
||
|
|
||
|
@dispatcher.message(Command("start"))
|
||
|
async def welcome(message: types.Message):
|
||
|
await message.answer(
|
||
|
"hello, insert device's IMEI and I say about this device"
|
||
|
)
|