from flask import Blueprint, Response, jsonify from app.services.asmr_service import AsmrService bp = Blueprint("asmr", __name__) @bp.route("/") def index(): asmr_object = AsmrService() return jsonify({"code": 200, "message": asmr_object.get_all()})