(ctx context.Context, options client.ConfigCreateOptions)
| 15 | } |
| 16 | |
| 17 | func (c *fakeClient) ConfigCreate(ctx context.Context, options client.ConfigCreateOptions) (client.ConfigCreateResult, error) { |
| 18 | if c.configCreateFunc != nil { |
| 19 | return c.configCreateFunc(ctx, options) |
| 20 | } |
| 21 | return client.ConfigCreateResult{}, nil |
| 22 | } |
| 23 | |
| 24 | func (c *fakeClient) ConfigInspect(ctx context.Context, id string, options client.ConfigInspectOptions) (client.ConfigInspectResult, error) { |
| 25 | if c.configInspectFunc != nil { |