mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-12 22:12:54 -06:00
12 lines
191 B
Python
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' |