mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
9 lines
185 B
Python
9 lines
185 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)
|