Source code for ftrack_connect_pipeline.host.engine.publish

# :coding: utf-8
# :copyright: Copyright (c) 2014-2020 ftrack

from ftrack_connect_pipeline.host.engine import BaseEngine


[docs]class PublisherEngine(BaseEngine): engine_type = 'publisher'
[docs] def __init__(self, event_manager, host_types, host_id, asset_type_name): super(PublisherEngine, self).__init__( event_manager, host_types, host_id, asset_type_name )