10 lines
213 B
Python
10 lines
213 B
Python
|
|
from fastapi import APIRouter
|
||
|
|
from fastapi.responses import JSONResponse
|
||
|
|
|
||
|
|
router = APIRouter(tags=["health"])
|
||
|
|
|
||
|
|
|
||
|
|
@router.get("/health")
|
||
|
|
async def health() -> JSONResponse:
|
||
|
|
return JSONResponse({"status": "ok"})
|