Spaces:
Sleeping
Sleeping
File size: 651 Bytes
158d492 729a1f7 46db43c 3aa80a8 46db43c d063204 46db43c 5a24119 3aa80a8 5bd3c8d 46db43c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# https://binkhoale1812-edsummariser.hf.space/
# Minimal orchestrator that exposes the FastAPI app and registers routes
from helpers import app # FastAPI instance
# Import route modules for side-effect registration
import routes.auth as _routes_auth
import routes.projects as _routes_projects
import routes.files as _routes_files
import routes.reports as _routes_report
import routes.chats as _routes_chat
import routes.sessions as _routes_sessions
import routes.health as _routes_health
import routes.analytics as _routes_analytics
# Local dev
# if __name__ == "__main__":
# import uvicorn
# uvicorn.run(app, host="0.0.0.0", port=8000)
|