13 lines
546 B
Python
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", "только для администрации"),
|
|
])
|