(ctx context.Context, id string, options client.ConfigInspectOptions)
| 22 | } |
| 23 | |
| 24 | func (c *fakeClient) ConfigInspect(ctx context.Context, id string, options client.ConfigInspectOptions) (client.ConfigInspectResult, error) { |
| 25 | if c.configInspectFunc != nil { |
| 26 | return c.configInspectFunc(ctx, id, options) |
| 27 | } |
| 28 | return client.ConfigInspectResult{}, nil |
| 29 | } |
| 30 | |
| 31 | func (c *fakeClient) ConfigList(ctx context.Context, options client.ConfigListOptions) (client.ConfigListResult, error) { |
| 32 | if c.configListFunc != nil { |