mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
19 lines
414 B
Python
19 lines
414 B
Python
from argenta import Router, Response, Command
|
|
from argenta.command import Flags, Flag
|
|
|
|
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}!")
|