from quart import Blueprint, jsonify api = Blueprint("api", __name__, url_prefix="/api") @api.route("/health") async def health(): return jsonify({"status": "ok"})