From b1ffd5220866dc9479fa284dfb2f0a0e111a6031 Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Tue, 20 Sep 2022 17:58:27 -0400 Subject: auth --- app/meta/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/meta/__init__.py (limited to 'app/meta') 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") -- cgit v1.2.3