feat: add /info command (#1)

Reviewed-on: #1
Co-authored-by: mctaylors <cantsendmails@mctaylors.ru>
Co-committed-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-05-20 18:15:12 +03:00 committed by Forgejo
parent c70d7fe3be
commit 6141d674a9
Signed by untrusted user who does not match committer: Forgejo
GPG key ID: F2B3CB736682B201
4 changed files with 115 additions and 7 deletions

View file

@ -21,6 +21,7 @@ def main() -> None:
application.add_handler(CommandHandler("start", commands.start_command))
application.add_handler(CommandHandler("help", commands.help_command))
application.add_handler(CommandHandler("about", commands.about_command))
application.add_handler(CommandHandler("info", commands.info_command))
from inline_query import inline_query
application.add_handler(InlineQueryHandler(inline_query))