mirror of
https://github.com/markqvist/LXMF.git
synced 2025-03-29 10:07:59 -04:00
9 lines
266 B
Python
9 lines
266 B
Python
import os
|
|
import glob
|
|
from .LXMessage import LXMessage
|
|
from .LXMRouter import LXMRouter
|
|
|
|
from ._version import __version__
|
|
|
|
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
|
|
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')] |