35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Application surfaces for progressive service extraction."""
|
|
|
|
from .agent_service import app as agent_app
|
|
from .agent_service import create_app as create_agent_app
|
|
from .news_service import app as news_app
|
|
from .news_service import create_app as create_news_app
|
|
from .openclaw_service import app as openclaw_app
|
|
from .openclaw_service import create_app as create_openclaw_app
|
|
from .runtime_service import app as runtime_app
|
|
from .runtime_service import create_app as create_runtime_app
|
|
from .trading_service import app as trading_app
|
|
from .trading_service import create_app as create_trading_app
|
|
from .cors import add_cors_middleware, get_cors_origins
|
|
|
|
app = agent_app
|
|
create_app = create_agent_app
|
|
|
|
__all__ = [
|
|
"app",
|
|
"create_app",
|
|
"agent_app",
|
|
"create_agent_app",
|
|
"news_app",
|
|
"create_news_app",
|
|
"openclaw_app",
|
|
"create_openclaw_app",
|
|
"runtime_app",
|
|
"create_runtime_app",
|
|
"trading_app",
|
|
"create_trading_app",
|
|
"add_cors_middleware",
|
|
"get_cors_origins",
|
|
]
|