mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
10 lines
214 B
Python
10 lines
214 B
Python
from argenta import App
|
|
|
|
|
|
def repeated_input_flags_handler(raw_command: str):
|
|
print(f"Repeated input flags: {raw_command}")
|
|
|
|
|
|
app: App = App()
|
|
app.set_repeated_input_flags_handler(repeated_input_flags_handler)
|