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