ayon-core/openpype/modules/default_modules/ftrack/interfaces.py
2021-07-28 14:19:35 +02:00

12 lines
350 B
Python

from abc import abstractmethod
from openpype.modules import OpenPypeInterface
class IFtrackEventHandlerPaths(OpenPypeInterface):
"""Other modules interface to return paths to ftrack event handlers.
Expected output is dictionary with "server" and "user" keys.
"""
@abstractmethod
def get_event_handler_paths(self):
pass