Spaces:
Runtime error
Runtime error
| from fastapi import APIRouter | |
| router = APIRouter( | |
| prefix="/health", | |
| tags=["Health"] | |
| ) | |
| def health(): | |
| return { | |
| "status": "healthy" | |
| } |
| from fastapi import APIRouter | |
| router = APIRouter( | |
| prefix="/health", | |
| tags=["Health"] | |
| ) | |
| def health(): | |
| return { | |
| "status": "healthy" | |
| } |