Initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# app/main.py
|
||||
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
main = Blueprint('main', __name__)
|
||||
|
||||
@main.route('/')
|
||||
def index():
|
||||
return render_template('index.html')
|
||||
Reference in New Issue
Block a user