Added help command

This commit is contained in:
StNicolay 2022-10-14 20:16:46 +03:00
parent b5aebdb101
commit cfd2a24e25
2 changed files with 15 additions and 0 deletions

View File

@ -35,4 +35,7 @@ def create_bot(token: str, engine: mariadb.Connection) -> telebot.TeleBot:
functools.partial(handlers.delete_account, bot, engine),
commands=["delete_account"],
)
bot.register_message_handler(
functools.partial(handlers.help, bot), commands=["help", "start"]
)
return bot

View File

@ -167,3 +167,15 @@ def delete_account(
database.delete.delete_account(engine, mes.from_user.id, data[1])
_send_tmp_message(bot, mes.chat.id, "Аккаунт удалён")
def help(bot: telebot.TeleBot, mes: telebot.types.Message) -> None:
message = """Команды:
/set_master_pass {Мастер пароль} - установить мастер пароль
/add_account {Название} {Логин} {Пароль} {Мастер пароль} - создать аккаунт
/get_accounts - получить список аккаунтов
/get_account {Название} {Мастер пароль} - получить логин и пароль аккаунта
/delete_account {Название} - удалить аккаунт
/delete_all - удалить все аккаунты и мастер пароль
/reset_master_pass {Новый мастер пароль} - удалить все аккаунты и изменить мастер пароль"""
bot.send_message(mes.chat.id, message)