Moved handlers to telegram/commands package

This commit is contained in:
Alexey Sokolov
2022-08-12 02:00:59 +03:00
parent d1425aaa8e
commit 043584c730
4 changed files with 31 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
from aiogram.types import Message
from aiogram.dispatcher.webhook import SendMessage
async def telegram_test(message: Message) -> SendMessage:
return SendMessage(message.chat.id, 'passed!')