mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
17 lines
370 B
Python
17 lines
370 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']
|
|
|
|
|
|
class Loader(LoaderPlugin, ABC):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
pass
|