mirror of
https://github.com/Xevion/runnerspace.git
synced 2026-02-01 00:25:53 -06:00
basic main.py and routes added
This commit is contained in:
@@ -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'
|
||||
Reference in New Issue
Block a user