from flask import Blueprint bp = Blueprint("questions", __name__) @bp.route("/") def index(): return "Hello, World!"