CustomIWMServer/customiwmserver/hooks/__init__.py
2022-11-20 16:22:35 +01:00

9 lines
206 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)