This commit is contained in:
2025-11-02 01:04:31 +03:00
parent 64c984a704
commit 9c58c10152
70 changed files with 341 additions and 391 deletions
+9 -10
View File
@@ -3,21 +3,20 @@ 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")
])
))
@router.command(
Command(
"example",
description="Example command with flags",
flags=Flags([Flag("name"), Flag("age")]),
)
)
def example_handler(response: Response):
# response.input_flags содержит коллекцию InputFlags
input_flags = response.input_flags
# Проверяем наличие флагов
if input_flags:
print(f"Received {len(input_flags.flags)} flag(s)")
else:
print("No flags provided")