Files
HangmanLab.Backend/api/template/__init__.py
2025-04-14 17:02:22 +01:00

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)