Newer
Older
"""
The main module, from where GSO is run.
"""
from orchestrator import OrchestratorCore
from orchestrator.cli.main import app as core_cli
from orchestrator.settings import AppSettings
import gso.products # pylint: disable=unused-import
import gso.workflows # pylint: disable=unused-import
app = OrchestratorCore(base_settings=AppSettings())
if __name__ == "__main__":
core_cli()