mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
OP-2766 - merge develop
This commit is contained in:
commit
c86643dcce
166 changed files with 2611 additions and 1368 deletions
|
|
@ -1,4 +1,7 @@
|
|||
from .lib import attribute_definitions
|
||||
from .constants import (
|
||||
AVALON_CONTAINER_ID,
|
||||
HOST_WORKFILE_EXTENSIONS,
|
||||
)
|
||||
|
||||
from .create import (
|
||||
BaseCreator,
|
||||
|
|
@ -40,8 +43,27 @@ from .publish import (
|
|||
OpenPypePyblishPluginMixin
|
||||
)
|
||||
|
||||
from .actions import (
|
||||
LauncherAction,
|
||||
|
||||
InventoryAction,
|
||||
|
||||
discover_launcher_actions,
|
||||
register_launcher_action,
|
||||
register_launcher_action_path,
|
||||
|
||||
discover_inventory_actions,
|
||||
register_inventory_action,
|
||||
register_inventory_action_path,
|
||||
deregister_inventory_action,
|
||||
deregister_inventory_action_path,
|
||||
)
|
||||
|
||||
|
||||
__all__ = (
|
||||
"AVALON_CONTAINER_ID",
|
||||
"HOST_WORKFILE_EXTENSIONS",
|
||||
|
||||
"attribute_definitions",
|
||||
|
||||
# --- Create ---
|
||||
|
|
@ -82,5 +104,19 @@ __all__ = (
|
|||
"PublishValidationError",
|
||||
"PublishXmlValidationError",
|
||||
"KnownPublishError",
|
||||
"OpenPypePyblishPluginMixin"
|
||||
"OpenPypePyblishPluginMixin",
|
||||
|
||||
# --- Actions ---
|
||||
"LauncherAction",
|
||||
"InventoryAction",
|
||||
|
||||
"discover_launcher_actions",
|
||||
"register_launcher_action",
|
||||
"register_launcher_action_path",
|
||||
|
||||
"discover_inventory_actions",
|
||||
"register_inventory_action",
|
||||
"register_inventory_action_path",
|
||||
"deregister_inventory_action",
|
||||
"deregister_inventory_action_path",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue