renamed 'IHostModule' to 'IHostAddon'

This commit is contained in:
Jakub Trllo 2022-08-26 15:06:50 +02:00
parent 52fdba85da
commit 2bfa9eea44
14 changed files with 31 additions and 31 deletions

View file

@ -5,12 +5,12 @@ import click
from openpype.lib import get_openpype_execute_args
from openpype.lib.execute import run_detached_process
from openpype.modules import OpenPypeModule
from openpype.modules.interfaces import ITrayAction, IHostModule
from openpype.modules.interfaces import ITrayAction, IHostAddon
STANDALONEPUBLISH_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class StandAlonePublishModule(OpenPypeModule, ITrayAction, IHostModule):
class StandAlonePublishModule(OpenPypeModule, ITrayAction, IHostAddon):
label = "Publish"
name = "standalonepublish_tool"
host_name = "standalonepublisher"