Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| from fastapi.responses import FileResponse | |
| app = FastAPI() | |
| async def serve_html(): | |
| return FileResponse("index.html") | |
| async def health(): | |
| return {"status": "ok"} |