channel-block-tg/handlers/users/echo.py
Kostiantyn Kriuchkov eab45a5088 Deleted mysql support, redis password, webhook, keyboard constructors, filters, loguru.
Added support of decorators in handlers
Added function to notify admins on startup
2020-04-14 01:50:57 +03:00

8 lines
153 B
Python

from aiogram import types
from bot import dp
@dp.message_handler()
async def bot_start(message: types.Message):
await message.answer(message.text)