blob: 649488914886d0774a51d6ad67f8b2686dab9c0e (
plain)
1
2
3
4
5
6
7
8
|
from telebot.types import BotCommand
from config_data.config import DEFAULT_COMMANDS
def set_default_commands(bot):
bot.set_my_commands(
[BotCommand(*i) for i in DEFAULT_COMMANDS]
)
|