start stubbing out endpoints

This commit is contained in:
2026-04-13 20:03:26 +03:00
parent ce9bca0a75
commit 4aa4e58c58
14 changed files with 304 additions and 48 deletions

11
app/routes/threads.py Normal file
View File

@@ -0,0 +1,11 @@
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'