Files
Argenta/mock/min_app/routers.py
T
2025-10-28 09:38:07 +03:00

9 lines
228 B
Python

# routers.py
from argenta import Command, Response, Router
router = Router(title="Quickstart Example")
@router.command(Command("hello", description="Say hello"))
def handler(response: Response):
print("Hello, world!")