Flask setup
This commit is contained in:
7
atst/routes/__init__.py
Normal file
7
atst/routes/__init__.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
bp = Blueprint("atst", __name__)
|
||||
|
||||
@bp.route("/")
|
||||
def home():
|
||||
return render_template("home.html")
|
Reference in New Issue
Block a user