mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
* replace OpenPype with AYON * replace OpenPype with AYON * kuba's comments * Resolve Hound * remove redundant space
14 lines
339 B
Python
14 lines
339 B
Python
# -*- coding: utf-8 -*-
|
|
"""OpenPype startup script."""
|
|
from openpype.pipeline import install_host
|
|
from openpype.hosts.houdini.api import HoudiniHost
|
|
from openpype import AYON_SERVER_ENABLED
|
|
|
|
|
|
def main():
|
|
print("Installing {} ...".format(
|
|
"AYON" if AYON_SERVER_ENABLED else "OpenPype"))
|
|
install_host(HoudiniHost())
|
|
|
|
|
|
main()
|