mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
12 lines
311 B
Python
12 lines
311 B
Python
from avalon import harmony
|
|
|
|
|
|
class CreateTemplate(harmony.Creator):
|
|
"""Composite node for publishing to templates."""
|
|
|
|
name = "templateDefault"
|
|
label = "Template"
|
|
family = "harmony.template"
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(CreateTemplate, self).__init__(*args, **kwargs)
|