mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
21 lines
479 B
Python
21 lines
479 B
Python
from argenta import Command, Response, Router
|
|
from argenta.command import Flag, Flags
|
|
|
|
|
|
router = Router(title="Example")
|
|
|
|
@router.command(
|
|
Command(
|
|
"example",
|
|
description="Example command with flags",
|
|
flags=Flags([Flag("name"), Flag("age")]),
|
|
)
|
|
)
|
|
def example_handler(response: Response):
|
|
input_flags = response.input_flags
|
|
|
|
if input_flags:
|
|
print(f"Received {len(input_flags)} flag(s)")
|
|
else:
|
|
print("No flags provided")
|