Files
projects/Dockers/puppeteer-api/app/routes/health.py
T
Bram 09ecad1e7c
Build and Push Docker Images / build-and-push (push) Successful in 4m10s
add swagger to puppeteer
2026-04-23 15:21:50 +02:00

7 lines
139 B
Python

from fastapi import APIRouter
router = APIRouter(tags=["Health"])
@router.head("/")
async def health_check():
return {"status": "ok"}