(ctx context.Context, node *Node)
| 141 | type NodeService interface { |
| 142 | GetNode(ctx context.Context, id string) (*Node, error) |
| 143 | CreateNode(ctx context.Context, node *Node) error |
| 144 | UpdateNode(ctx context.Context, node *Node) error |
| 145 | DeleteNode(ctx context.Context, id string) error |
| 146 | } |
no outgoing calls