diff --git a/app/agent.py b/app/agent.py index cad7901..cb8b211 100644 --- a/app/agent.py +++ b/app/agent.py @@ -1 +1,5 @@ -"""crucible-agent-build-fastapi-endpoint: create_agent_app wiring + REST route handlers only.""" +"""ASGI compatibility entry point for the generated service repository.""" + +from app.main import app + +__all__ = ["app"]