basic main.py and routes added

This commit is contained in:
Seligmann
2022-03-26 17:18:12 -05:00
parent a068365aaa
commit dcf0779e80
45 changed files with 687 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Blueprint
from . import db
main = Blueprint('main', __name__)
@main.route('/')
def index():
return 'Index'
@main.route('/profile')
def profile():
return 'Profile'