LMXF-specification/LXMF/__init__.py

7 lines
221 B
Python
Raw Normal View History

2020-04-29 12:57:06 +02:00
import os
import glob
from .LXMF import LXMessage
from .LXMF import LXMRouter
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]