mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-24 12:07:19 +02:00
Tests cover loading/unloading plugins, registering/unregistering node plugins, and reloading them.
22 lines
No EOL
395 B
Python
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="",
|
|
),
|
|
] |