mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
11 lines
300 B
Python
11 lines
300 B
Python
from argenta import App, Orchestrator
|
|
from argenta.orchestrator.argparser import ArgParser, BooleanArgument
|
|
|
|
arg_parser = ArgParser(processed_args=[BooleanArgument("config")])
|
|
orchestrator = Orchestrator(
|
|
arg_parser=arg_parser,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
orchestrator.start_polling(App())
|