Files
Argenta/mock/mock_app/routers.py
T
2026-01-09 10:14:25 +03:00

18 lines
420 B
Python

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