RandonautEntroPy/randonautentropy/__init__.py
randogoth e7265937e3 init
2023-05-28 22:49:23 +03:00

8 lines
No EOL
205 B
Python

import os
import glob
from .rndo import *
from .cmd 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')]