Files
SigHej/backend/app/api/health.py

10 lines
213 B
Python
Raw Normal View History

2026-05-12 18:21:25 +02:00
from fastapi import APIRouter
from fastapi.responses import JSONResponse
router = APIRouter(tags=["health"])
@router.get("/health")
async def health() -> JSONResponse:
return JSONResponse({"status": "ok"})