from flask import Blueprint, jsonify bp = Blueprint("health", __name__) @bp.route("/health", methods=["GET"]) def health(): """Simple health check endpoint.""" return jsonify({"status": "ok"})