aboutsummaryrefslogtreecommitdiff
path: root/app/meta/__init__.py
blob: 4fbe23ce019d05cfcd5d14e9dfe908c3aa97131b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from flask import Blueprint
from flask.helpers import flash
from flask.templating import render_template

bp = Blueprint("meta", __name__)

@bp.route("/")
def home():
    flash("Test")
    return render_template("index.html")