d22abd2bc5
All checks were successful
continuous-integration/drone/push Build is passing
Closes #3. Closes #5. Closes #7. Closes #4. Closes #2.
11 lines
195 B
Python
11 lines
195 B
Python
"""Healthcheck routes."""
|
|
|
|
from fastapi import APIRouter, Request
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/healthz")
|
|
async def healthz(request: Request):
|
|
return {"detail": "ALL ENGINES FIRING"}
|