http.py 120 B

12345678
  1. from flask import Blueprint
  2. main = Blueprint("main", __name__)
  3. @main.route("/")
  4. def index():
  5. return "index html"