(_ context.Context, patch *proto.DeploymentEndpointPatch)
| 51 | } |
| 52 | |
| 53 | func (api *DpApiServer) UpdateEndpointList(_ context.Context, patch *proto.DeploymentEndpointPatch) (*proto.DeploymentUpdateSuccess, error) { |
| 54 | return api.dataplane.UpdateEndpointList(patch) |
| 55 | } |
| 56 | |
| 57 | func (api *DpApiServer) DeleteDeployment(_ context.Context, name *proto.ServiceInfo) (*proto.DeploymentUpdateSuccess, error) { |
| 58 | return api.dataplane.DeleteDeployment(name) |
nothing calls this directly
no test coverage detected