2022-02-16 18:13:44 +03:00
|
|
|
from aiogram import types
|
|
|
|
|
|
|
|
|
|
|
|
async def set_commands(dp):
|
|
|
|
await dp.bot.set_my_commands([
|
|
|
|
types.BotCommand("start", "получить список замен"),
|
|
|
|
types.BotCommand("help", "информация"),
|
|
|
|
types.BotCommand("link", "получить ссылку на файл"),
|
2023-02-19 01:56:06 +03:00
|
|
|
types.BotCommand('timetable', "Розклад"),
|
2023-03-28 10:26:26 +03:00
|
|
|
types.BotCommand('feedback', "Звязок з адміністратором")
|
2022-02-16 18:13:44 +03:00
|
|
|
types.BotCommand("reload", "только для администрации"),
|
2023-03-28 10:26:26 +03:00
|
|
|
])
|