vumichien's picture
update project structure
b77c0a2
raw
history blame contribute delete
168 Bytes
from fastapi import APIRouter
import time
router = APIRouter()
@router.get("/health")
async def health_check():
return {"status": "ok", "timestamp": time.time()}