replace-bot/utils/bot_commands.py
2023-03-28 10:26:26 +03:00

13 lines
546 B
Python

from aiogram import types
async def set_commands(dp):
await dp.bot.set_my_commands([
types.BotCommand("start", "получить список замен"),
types.BotCommand("help", "информация"),
types.BotCommand("link", "получить ссылку на файл"),
types.BotCommand('timetable', "Розклад"),
types.BotCommand('feedback', "Звязок з адміністратором")
types.BotCommand("reload", "только для администрации"),
])