mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
from aiogram import Router
|
|
from aiogram.types import Message
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.message(commands=["start"])
|
|
async def process_message(m: Message):
|
|
await m.answer("Hi!")
|