feat: add /user command

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-06-08 09:45:25 +03:00
parent 6ccf2ace4a
commit 5d4ff660c3
Signed by: mctaylors
GPG key ID: 4EEF4F949A266EE2
3 changed files with 218 additions and 3 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