add: template editor

This commit is contained in:
h z
2025-04-14 17:02:22 +01:00
parent 6626fac452
commit fa855bc7bb
20 changed files with 442 additions and 299 deletions

9
api/template/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
import importlib
import pkgutil
from flask import Blueprint
template_bp = Blueprint('template', __name__, url_prefix='/api/template')
for loader, module_name, is_pkg in pkgutil.walk_packages(__path__, prefix=__name__ + "."):
importlib.import_module(module_name)