# -*- 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 .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 app = agent_app create_app = create_agent_app __all__ = [ "app", "create_app", "agent_app", "create_agent_app", "news_app", "create_news_app", "runtime_app", "create_runtime_app", "trading_app", "create_trading_app", ]