mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-14 08:12:51 -06:00
14 lines
309 B
Python
14 lines
309 B
Python
from flask import Blueprint
|
|
from . import db
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
@main.route('/')
|
|
def index():
|
|
# return render_template('index.html')
|
|
return 'Index' # placeholder
|
|
|
|
@main.route('/profile')
|
|
def profile():
|
|
# return render_template('profile.html')
|
|
return 'Profile' # placeholder |