Initial commit

This commit is contained in:
Mark Qvist 2021-03-27 10:58:13 +01:00
commit 3ab47d4cc5
5 changed files with 76 additions and 0 deletions

7
nomadnet/__init__.py Normal file
View file

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