11 lines
289 B
Python
Raw Normal View History

2025-01-24 18:23:45 +10:00
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"
)