feat: add /user command (#5)
All checks were successful
Build / Upload to production (push) Successful in 1m43s

Reviewed-on: #5
Co-authored-by: mctaylors <cantsendmails@mctaylors.ru>
Co-committed-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-06-08 10:59:52 +03:00 committed by Forgejo
parent 6ccf2ace4a
commit 86e9c04e1e
Signed by: Forgejo
GPG key ID: F2B3CB736682B201
3 changed files with 271 additions and 4 deletions

View file

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