(ctx context.Context, in *tree.CreateNodeRequest, opts ...grpc.CallOption)
| 112 | } |
| 113 | |
| 114 | func (e *Executor) CreateNode(ctx context.Context, in *tree.CreateNodeRequest, opts ...grpc.CallOption) (*tree.CreateNodeResponse, error) { |
| 115 | log.Logger(ctx).Debug("Exec.CreateNode", zap.String("p", in.Node.Path)) |
| 116 | return nodes.GetSourcesPool(ctx).GetTreeClientWrite().CreateNode(ctx, in, opts...) |
| 117 | } |
| 118 | |
| 119 | func (e *Executor) UpdateNode(ctx context.Context, in *tree.UpdateNodeRequest, opts ...grpc.CallOption) (*tree.UpdateNodeResponse, error) { |
| 120 | return nodes.GetSourcesPool(ctx).GetTreeClientWrite().UpdateNode(ctx, in, opts...) |
nothing calls this directly
no test coverage detected