feat: add "Show information" button
All checks were successful
Build / Upload to production (push) Successful in 1m43s

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-06-08 23:44:55 +03:00
parent 86e9c04e1e
commit c1f803503e
Signed by: mctaylors
GPG key ID: 4EEF4F949A266EE2
2 changed files with 19 additions and 12 deletions

View file

@ -19,6 +19,9 @@ def main() -> None:
import commands
application.add_handler(
CommandHandler("start", commands.info_command, has_args=True)
)
application.add_handler(CommandHandler("start", commands.start_command))
application.add_handler(CommandHandler("help", commands.help_command))
application.add_handler(CommandHandler("about", commands.about_command))