Files
OpenCore-Legacy-Patcher/Resources/__init__.py
Mykola Grymalyuk ca17eef4c1 Clean resources
2020-11-27 08:16:26 -07:00

5 lines
217 B
Python

# Source: CorpNewt
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*.py")
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]