add: template editor
This commit is contained in:
9
api/template/__init__.py
Normal file
9
api/template/__init__.py
Normal 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)
|
||||
Reference in New Issue
Block a user