reticulum/RNS/vendor/__init__.py

6 wiersze
166 B
Python
Czysty Zwykły widok Historia

2016-06-03 17:02:02 +00:00
import os
import glob
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]