mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-06 08:37:22 +00:00
8 lines
217 B
Python
8 lines
217 B
Python
import glob
|
|
from os.path import basename, dirname, isfile, join
|
|
|
|
modules = glob.glob(join(dirname(__file__), "*.py"))
|
|
__all__ = [
|
|
basename(f)[:-3] for f in modules if isfile(f) and not f.endswith("__init__.py")
|
|
]
|