Files
Argenta/mock/mock_app/routers.py
T
2025-11-03 12:18:56 +03:00

9 lines
230 B
Python

from argenta import Router, Response, Command
work_router: Router = Router(title="Base points:")
@work_router.command(Command('hello', description="Hello, world!"))
def command_help(response: Response):
print('Hello, world!')