(_ context.Context, serviceID string, _ client.ServiceInspectOptions)
| 20 | } |
| 21 | |
| 22 | func (cli *fakeClient) ServiceInspect(_ context.Context, serviceID string, _ client.ServiceInspectOptions) (client.ServiceInspectResult, error) { |
| 23 | if cli.serviceInspectFunc != nil { |
| 24 | return cli.serviceInspectFunc(serviceID) |
| 25 | } |
| 26 | return client.ServiceInspectResult{}, nil |
| 27 | } |