This commit is contained in:
2025-10-21 12:19:05 +03:00
parent 8a8a1739e7
commit 90e80d3454
2 changed files with 95 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
from argenta.router import Router
from argenta.command import Command
user_router = Router(title="User Management")
@user_router.command(Command("add-user", description="Adds a new user"))
def add_user_handler(response):
# Логика добавления пользователя
print("User added successfully!")