functional

This commit is contained in:
randogoth 2023-05-12 01:00:49 +03:00
parent eba68415c1
commit ced34c2145
5 changed files with 606 additions and 4 deletions

7
loratransmit/__init__.py Normal file
View file

@ -0,0 +1,7 @@
import os
import glob
from .loratransmit 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')]