mirror of
https://github.com/markqvist/LoRaMon
synced 2026-08-12 17:40:19 -04:00
7 lines
No EOL
189 B
Python
7 lines
No EOL
189 B
Python
import os
|
|
import glob
|
|
|
|
from .loramon import *
|
|
|
|
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
|
|
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')] |