feat(main): adds main module
This commit is contained in:
6
app/main/routes.py
Normal file
6
app/main/routes.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from flask import render_template
|
||||
from app.main import bp
|
||||
|
||||
@bp.route('/')
|
||||
def index():
|
||||
return render_template("index.html")
|
||||
Reference in New Issue
Block a user