diff options
author | Cara Salter <cara@devcara.com> | 2022-09-20 17:58:27 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-09-20 17:58:27 -0400 |
commit | b1ffd5220866dc9479fa284dfb2f0a0e111a6031 (patch) | |
tree | c63661f965a4a4e99888f23f28619d5a61e7244a /app/meta | |
parent | e549bc0a5c39e85fb94cb289497f1b245b564947 (diff) | |
download | nccd-b1ffd5220866dc9479fa284dfb2f0a0e111a6031.tar.gz nccd-b1ffd5220866dc9479fa284dfb2f0a0e111a6031.zip |
auth
Diffstat (limited to 'app/meta')
-rw-r--r-- | app/meta/__init__.py | 10 |
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") |