Files
Argenta/docs/code_snippets/error_handling/snippet.py
T
2025-11-02 01:04:31 +03:00

10 lines
169 B
Python

from argenta import App
def empty_command_handler():
print("Empty command handler called")
app: App = App()
app.set_empty_command_handler(empty_command_handler)