Skip to content
Snippets Groups Projects
main.py 268 B
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings

import products
import workflows

app = OrchestratorCore(base_settings=AppSettings())

if __name__ == "__main__":
    core_cli()