Spaces:
Running
Running
File size: 168 Bytes
b77c0a2 |
1 2 3 4 5 6 7 8 9 |
from fastapi import APIRouter
import time
router = APIRouter()
@router.get("/health")
async def health_check():
return {"status": "ok", "timestamp": time.time()}
|