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

15
app/routes/mod.py Normal file
View File

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