Sideband_CE/sbapp/__init__.py

5 lines
165 B
Python
Raw Normal View History

2022-07-07 22:16:10 +02:00
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')]