Skip to content
Snippets Groups Projects
main.py 349 B
Newer Older
"""The main module that runs {term}`GSO`."""
JORGE SASIAIN's avatar
JORGE SASIAIN committed
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings
Karel van Klink's avatar
Karel van Klink committed
import gso.products  # noqa: F401
import gso.workflows  # noqa: F401
JORGE SASIAIN's avatar
JORGE SASIAIN committed

app = OrchestratorCore(base_settings=AppSettings())

if __name__ == "__main__":
    core_cli()