Files
Argenta/docs/code_snippets/error_handling_example_sample6.py
T
2025-10-17 01:09:06 +03:00

8 lines
184 B
Python

from argenta import App, Response
def exit_command_handler(response: Response):
print("Exit command handler")
app: App = App()
app.set_exit_command_handler(exit_command_handler)