(_ context.Context, in *proto.ServiceInfo)
| 47 | } |
| 48 | |
| 49 | func (api *DpApiServer) AddDeployment(_ context.Context, in *proto.ServiceInfo) (*proto.DeploymentUpdateSuccess, error) { |
| 50 | return api.dataplane.AddDeployment(in) |
| 51 | } |
| 52 | |
| 53 | func (api *DpApiServer) UpdateEndpointList(_ context.Context, patch *proto.DeploymentEndpointPatch) (*proto.DeploymentUpdateSuccess, error) { |
| 54 | return api.dataplane.UpdateEndpointList(patch) |
nothing calls this directly
no test coverage detected