10 lines
269 B
Python
10 lines
269 B
Python
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)
|