12 lines
191 B
Python
12 lines
191 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('threads', __name__, url_prefix='/threads/')
|
|
|
|
@bp.get('/<slug>')
|
|
def thread(slug):
|
|
return 'stub'
|
|
|
|
@bp.get('/new')
|
|
def new():
|
|
return 'stub'
|