NomadNet/nomadnet/__init__.py

7 lines
190 B
Python
Raw Normal View History

2021-03-27 05:58:13 -04:00
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')]