ayon-core/openpype/settings/__init__.py
2021-04-01 18:54:46 +02:00

23 lines
423 B
Python

from .lib import (
get_system_settings,
get_project_settings,
get_current_project_settings,
get_anatomy_settings,
get_environments
)
from .entities import (
SystemSettings,
ProjectSettings
)
__all__ = (
"get_system_settings",
"get_project_settings",
"get_current_project_settings",
"get_anatomy_settings",
"get_environments",
"SystemSettings",
"ProjectSettings"
)