mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
12 lines
350 B
Python
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
|