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,8 @@
from argenta import App
from argenta.command import InputCommand
def unknown_command_handler(command: InputCommand):
print(f"Unknown input command with trigger: {command.trigger}")
app: App = App()
app.set_unknown_command_handler(unknown_command_handler)