start stubbing out endpoints
This commit is contained in:
11
app/routes/guides.py
Normal file
11
app/routes/guides.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from flask import Blueprint
|
||||
|
||||
bp = Blueprint('guides', __name__, url_prefix = '/guides/')
|
||||
|
||||
@bp.get('/')
|
||||
def index():
|
||||
return 'stub'
|
||||
|
||||
@bp.get('/contact')
|
||||
def contact():
|
||||
return 'stub'
|
||||
Reference in New Issue
Block a user