"""Health check endpoint.""" from fastapi import APIRouter from datetime import datetime, timezone router = APIRouter() @router.get("/health") async def health_check(): return { "status": "healthy", "service": "Personal Brand Engine", "owner": "Sami Assiri", "timestamp": datetime.now(timezone.utc).isoformat(), }