mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
10 lines
217 B
Python
10 lines
217 B
Python
from argenta.command import Flag
|
|
|
|
help_flag = Flag(name="help")
|
|
version_flag = Flag(name="V", prefix="-")
|
|
|
|
print(help_flag) # --help
|
|
|
|
message = f"Use {help_flag} to see help"
|
|
print(message) # Use --help to see help
|