CustomIWMServer/customiwmserver/hooks/__init__.py

8 lines
205 B
Python

# from . import *
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
for imp, module, ispackage in pkgutil.walk_packages(
path=__path__, prefix=__name__ + "."
):
__import__(module)