This commit is contained in:
randogoth 2023-05-28 22:49:23 +03:00
commit e7265937e3
8 changed files with 257 additions and 0 deletions

View file

@ -0,0 +1,8 @@
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')]