mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
10 lines
208 B
Python
10 lines
208 B
Python
from argenta.app import App
|
|
from argenta.app.defaults import PredeterminedMessages
|
|
|
|
|
|
app = App(repeat_command_groups=True)
|
|
|
|
app.add_message_on_startup(PredeterminedMessages.USAGE + '\n\n')
|
|
|
|
app.run_polling()
|