aboutsummaryrefslogtreecommitdiff
path: root/app/meta/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/meta/__init__.py')
-rw-r--r--app/meta/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/meta/__init__.py b/app/meta/__init__.py
new file mode 100644
index 0000000..4fbe23c
--- /dev/null
+++ b/app/meta/__init__.py
@@ -0,0 +1,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")