Files
runnerspace/flash_auth_app/project/main.py
2022-03-26 17:18:12 -05:00

12 lines
191 B
Python

from flask import Blueprint
from . import db
main = Blueprint('main', __name__)
@main.route('/')
def index():
return 'Index'
@main.route('/profile')
def profile():
return 'Profile'