12 lines
206 B
Python
12 lines
206 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(tags=["health"])
|
|
|
|
|
|
@router.get("/health")
|
|
async def health() -> dict[str, str]:
|
|
return {
|
|
"status": "ok",
|
|
"service": "aidoit-api",
|
|
}
|