Files
PrimoWorldsBot/BotCode/routers/commands/user_cmd/help_cmd.py

19 lines
828 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# BotCode/routers/commands/user_cmd/help_cmd.py
# Работа с командой /help, для вывода помощи пользователю
from BotLibrary import CommandHandler
from BotCode.keyboards import get_help_kb
# Настройки экспорта в модули
__all__ = ("help_cmd",)
# Создание команды /help с нужными параметрами
help_cmd = CommandHandler(
name="help",
description="Получить помощь",
keywords=["help", "info", "помощь", "инфо", "информация", "рудз", "штащ", "byaj", "gjvjom", "byajhvfwbz"],
callbackdata="keywords",
keyboard=get_help_kb,
text_msg="Привет! Это команда помощи. Тут ты можешь узнать, как пользоваться ботом.",
)