Files
llm-council/main.py

6 lines
170 B
Python

# Railway entry point - re-export FastAPI app from backend
from backend.main import app
# This allows Railway to detect the app with: uvicorn main:app
__all__ = ["app"]