"""Health check blueprint.""" from flask import Blueprint, jsonify from blueprints.auth_bp import require_manager_auth from services import health_service health_bp = Blueprint("health", __name__, url_prefix="/api/health") @health_bp.route("", methods=["GET"]) @require_manager_auth def full_health(): return jsonify(health_service.get_full_health_report()) @health_bp.route("/tenant/", methods=["GET"]) @require_manager_auth def tenant_health(db_name): return jsonify(health_service.get_tenant_health(db_name))