mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
15 lines
366 B
Python
15 lines
366 B
Python
# -*- coding: utf-8 -*-
|
|
from abc import ABC
|
|
|
|
from openpype.pipeline import LegacyCreator
|
|
import avalon.api
|
|
|
|
|
|
class Creator(LegacyCreator):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
defaults = ['Main']
|
|
|
|
|
|
class Loader(avalon.api.Loader, ABC):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
pass
|