This commit is contained in:
2025-10-28 09:38:07 +03:00
parent 7b40fff4c5
commit bc6cb583a7
49 changed files with 588 additions and 123 deletions
+18
View File
@@ -0,0 +1,18 @@
from argenta import Router, Command, Response
router = Router(title="User Management")
@router.command(Command(
"create-user",
description="Create a new user account"
))
def handle_create_user(response):
print("Creating new user...")
@router.command(Command(
"delete-user",
description="Delete existing user account",
aliases=["remove-user", "rm-user"]
))
def handle_delete_user(response: Response):
print("Deleting user...")