first commit
This commit is contained in:
7
app/blueprints/main.py
Normal file
7
app/blueprints/main.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
main_bp = Blueprint("main", __name__)
|
||||
|
||||
@main_bp.route("/")
|
||||
def index():
|
||||
return render_template("index.html")
|
||||
Reference in New Issue
Block a user