mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
21 lines
334 B
Python
21 lines
334 B
Python
from ayon_core.addon.interfaces import (
|
|
IPluginPaths,
|
|
ITrayAddon,
|
|
ITrayAction,
|
|
ITrayService,
|
|
IHostAddon,
|
|
)
|
|
|
|
ITrayModule = ITrayAddon
|
|
ILaunchHookPaths = object
|
|
|
|
|
|
__all__ = (
|
|
"IPluginPaths",
|
|
"ITrayAddon",
|
|
"ITrayAction",
|
|
"ITrayService",
|
|
"IHostAddon",
|
|
"ITrayModule",
|
|
"ILaunchHookPaths",
|
|
)
|