from __future__ import annotations from flask import Blueprint, jsonify health_bp = Blueprint("health", __name__) @health_bp.get("/health") def healthcheck() -> tuple[dict[str, str], int]: return {"project": "HappyWedding", "short_name": "hw", "status": "ok"}, 200