Fix Railway entry point - re-export FastAPI app from backend.main

This commit is contained in:
Krishna Kumar
2025-12-30 04:00:55 -06:00
parent 2b2207035c
commit 3f2915629e

View File

@@ -1,6 +1,5 @@
def main(): # Railway entry point - re-export FastAPI app from backend
print("Hello from llm-council!") from backend.main import app
# This allows Railway to detect the app with: uvicorn main:app
if __name__ == "__main__": __all__ = ["app"]
main()