mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
10 lines
221 B
Python
10 lines
221 B
Python
from abc import ABCMeta
|
|
from pyblish.plugin import MetaPlugin, ExplicitMetaPlugin
|
|
|
|
|
|
class AbstractMetaInstancePlugin(ABCMeta, MetaPlugin):
|
|
pass
|
|
|
|
|
|
class AbstractMetaContextPlugin(ABCMeta, ExplicitMetaPlugin):
|
|
pass
|