replace-bot/utils/bot_commands.py
2023-02-19 00:56:06 +02:00

11 lines
458 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("reload", "только для администрации"),
])