Spaces:
Runtime error
Runtime error
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def root(): | |
| return {"ok": True} | |
| def health(): | |
| return {"ok": True} | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def root(): | |
| return {"ok": True} | |
| def health(): | |
| return {"ok": True} | |