This commit is contained in:
2025-10-28 10:34:34 +03:00
parent bc6cb583a7
commit 1f15b4c093
14 changed files with 488 additions and 80 deletions
+16
View File
@@ -0,0 +1,16 @@
from argenta.command import Flags, Flag
flags = Flags([
Flag("first"),
Flag("second"),
Flag("third")
])
print(flags[0].name)
# first
print(flags[1].name)
# second
print(flags[2].name)
# third