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

14 lines
704 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.samples.user_cmd_class import CommandHandler
# Создание команды /help с нужными параметрами
help_cmd = CommandHandler(
name="help",
description="Получить помощь",
keywords=["help", "info", "помощь", "инфо", "информация", "рудз", "штащ", "byaj", "gjvjom", "byajhvfwbz"],
callbackdata="keywords",
text_msg="Привет! Это команда помощи. Тут ты можешь узнать, как пользоваться ботом.",
)