questions.py 124 B

12345678
  1. from flask import Blueprint
  2. bp = Blueprint("questions", __name__)
  3. @bp.route("/")
  4. def index():
  5. return "Hello, World!"