feat: add /info command, pt. 1

This commit is contained in:
Macintxsh 2025-05-18 01:44:46 +03:00
parent 93e3ca4f96
commit 89f5b35395
4 changed files with 79 additions and 6 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))