8 lines
161 B
Python
8 lines
161 B
Python
from flask import Blueprint, render_template
|
|
|
|
bp = Blueprint("topics", __name__, url_prefix = "/threads/")
|
|
|
|
@bp.get("/<slug>")
|
|
def thread(slug):
|
|
return slug
|