12 lines
188 B
Python
12 lines
188 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('guides', __name__, url_prefix = '/guides/')
|
|
|
|
@bp.get('/')
|
|
def index():
|
|
return 'stub'
|
|
|
|
@bp.get('/contact')
|
|
def contact():
|
|
return 'stub'
|