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