mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
18 lines
401 B
Python
18 lines
401 B
Python
# -*- coding: utf-8 -*-
|
|
from abc import ABC
|
|
|
|
from openpype.pipeline import (
|
|
LegacyCreator,
|
|
LoaderPlugin,
|
|
)
|
|
|
|
|
|
class Creator(LegacyCreator):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
defaults = ['Main']
|
|
maintain_selection = False
|
|
|
|
|
|
class Loader(LoaderPlugin, ABC):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
pass
|