feat: review rejection test #18

Closed
pangtong-fujunshi wants to merge 2 commits from feat/need-revision into main
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
# Bad implementation
+9
View File
@@ -0,0 +1,9 @@
"""Health check endpoint."""
from fastapi import APIRouter
router = APIRouter()
@router.get("/api/healthz")
async def healthz():
"""Lightweight health check."""
return {"status": "ok"}