Feat: add user command

This commit is contained in:
2025-01-05 20:44:51 +03:00
parent 34308f2cac
commit 3962c57dde
12 changed files with 111 additions and 8 deletions

View File

@@ -20,5 +20,5 @@ if __name__ == "__main__":
# Start bot
bot = NwXrayBot(config.bot_token.get_secret_value())
bot.include_routers(HelloHandler(), MenuHandler())
bot.include_routers(HelloHandler(), MenuHandler(), AdminHandler())
uvloop.run(bot.start(skip_updates=True))