mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
10 lines
160 B
Python
10 lines
160 B
Python
from argenta import App
|
|
|
|
|
|
def empty_command_handler():
|
|
print("Empty input command")
|
|
|
|
|
|
app: App = App()
|
|
app.set_empty_command_handler(empty_command_handler)
|