This commit is contained in:
2025-11-01 11:38:48 +03:00
parent 0598f6e7a5
commit e4a5c6d398
73 changed files with 53 additions and 50 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...")