Skip to content

ccproxy.api

ccproxy.api

API layer for CCProxy API Server.

get_app

get_app()

Get the FastAPI app instance.

Source code in ccproxy/api/app.py
def get_app() -> FastAPI:
    """Get the FastAPI app instance."""
    container = create_service_container()
    return create_app(container)