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