mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
Also consolidate the options with the method. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
26 lines
598 B
Go
26 lines
598 B
Go
package client
|
|
|
|
import "context"
|
|
|
|
type ConfigRemoveOptions struct {
|
|
// Add future optional parameters here
|
|
}
|
|
|
|
type ConfigRemoveResult struct {
|
|
// Add future fields here
|
|
}
|
|
|
|
// ConfigRemove removes a config.
|
|
func (cli *Client) ConfigRemove(ctx context.Context, id string, options ConfigRemoveOptions) (ConfigRemoveResult, error) {
|
|
id, err := trimID("config", id)
|
|
if err != nil {
|
|
return ConfigRemoveResult{}, err
|
|
}
|
|
resp, err := cli.delete(ctx, "/configs/"+id, nil, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return ConfigRemoveResult{}, err
|
|
}
|
|
return ConfigRemoveResult{}, nil
|
|
}
|