Meshroom/tests/plugins/meshroom/pluginA/PluginANodeA.py
Candice Bentéjac aa4d9ad92b [tests] Add initial set of unit tests for plugins
Tests cover loading/unloading plugins, registering/unregistering
node plugins, and reloading them.
2025-06-05 14:40:13 +02:00

22 lines
No EOL
395 B
Python

__version__ = "1.0"
from meshroom.core import desc
class PluginANodeA(desc.Node):
inputs = [
desc.File(
name="input",
label="Input",
description="",
value="",
),
]
outputs = [
desc.File(
name="output",
label="Output",
description="",
value="",
),
]