continue making docs

This commit is contained in:
2025-10-16 18:51:07 +03:00
parent 4e30aae916
commit c87a0ce547
16 changed files with 377 additions and 129 deletions
@@ -0,0 +1,7 @@
from argenta import App
def incorrect_input_syntax_handler(raw_command: str):
print(f"Incorrect input syntax for command: {raw_command}")
app: App = App()
app.set_incorrect_input_syntax_handler(incorrect_input_syntax_handler)