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