from flask import jsonify, render_template from . import bp @bp.get("/") def index(): return render_template("core/index.html") @bp.get("/health") def health(): return jsonify(status="ok")