Sideband_CE/sbapp/__init__.py
2022-07-07 22:16:10 +02:00

5 lines
165 B
Python

import os
import glob
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]