mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
26 lines
437 B
Python
26 lines
437 B
Python
import os
|
|
import sys
|
|
import re
|
|
import ftrack_api
|
|
from pype.ftrack import BaseEvent
|
|
|
|
|
|
class TestEvent(BaseEvent):
|
|
|
|
ignore_me = True
|
|
|
|
priority = 10000
|
|
|
|
def launch(self, session, event):
|
|
|
|
'''just a testing event'''
|
|
|
|
# self.log.info(event)
|
|
|
|
return True
|
|
|
|
|
|
def register(session, plugins_presets):
|
|
'''Register plugin. Called when used as an plugin.'''
|
|
|
|
TestEvent(session, plugins_presets).register()
|