Files
Argenta/mock/mock_app/routers.py
T
2025-11-07 21:25:35 +03:00

10 lines
291 B
Python

from argenta import Router, Response, Command
work_router: Router = Router(title="Base points:", disable_redirect_stdout=True)
@work_router.command(Command('hello', description="Hello, world!"))
def command_help(response: Response):
c = input("Enter your name: ")
print(f"Hello, {c}!")