mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
9 lines
209 B
Python
9 lines
209 B
Python
# -*- coding: utf-8 -*-
|
|
from abc import ABC
|
|
|
|
from openpype.pipeline import LoaderPlugin
|
|
|
|
|
|
class Loader(LoaderPlugin, ABC):
|
|
"""This serves as skeleton for future OpenPype specific functionality"""
|
|
pass
|