aboutsummaryrefslogtreecommitdiff
path: root/app/meta/__init__.py
blob: 8b6f6fa9eb511c93bf63d13c01680b595aa85b1d (plain) (blame)
1
2
3
4
5
6
7
8
9
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")