Spaces:
Running
Running
| from __future__ import annotations | |
| from dataclasses import dataclass | |
| from .nodes import NodeInstance | |
| from .ports import PortState | |
| class Connection: | |
| start_node: NodeInstance | |
| start_port: PortState | |
| end_node: NodeInstance | |
| end_port: PortState | |