blob: 8b6f6fa9eb511c93bf63d13c01680b595aa85b1d (
plain) (
tree)
|
|
from flask import Blueprint
from flask.helpers import flash
from flask.templating import render_template
bp = Blueprint("meta", __name__)
@bp.route("/")
def home():
return render_template("index.html")
|