channel-block-tg/handlers/users/help.py
Kostiantyn Kriuchkov a66c0f14f4
Update help.py
2020-04-14 22:50:57 +03:00

17 lines
442 B
Python

from aiogram import types
from aiogram.dispatcher.filters.builtin import CommandHelp
from loader import dp
from utils.misc import rate_limit
@rate_limit(5, 'help')
@dp.message_handler(CommandHelp())
async def bot_help(message: types.Message):
text = [
'Список команд: ',
'/start - Начать диалог',
'/help - Получить справку'
]
await message.answer('\n'.join(text))