from flask import Blueprint bp = Blueprint('mod', __name__, url_prefix='/mod/') @bp.get('/') def index(): return 'stub' @bp.get('/topics/new') def new_topic(): return 'stub' @bp.get('/topics/sort') def sort_topics(): return 'stub' @bp.post('/threads//move') def move_thread(thread_id): return 'stub' @bp.post('/threads//lock') def lock_thread(thread_id): return 'stub' @bp.post('/threads//sticky') def sticky_thread(thread_id): return 'stub'