Initial Commit
This commit is contained in:
9
handlers/admins.py
Normal file
9
handlers/admins.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from aiogram import Router
|
||||
from aiogram.types import Message
|
||||
|
||||
router = Router()
|
||||
|
||||
|
||||
@router.message()
|
||||
async def echo(msg: Message):
|
||||
await msg.answer(msg.text)
|
||||
Reference in New Issue
Block a user