mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
102738101a
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
10 lines
253 B
Go
10 lines
253 B
Go
package client
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
// ConfigRemove removes a Config.
|
|
func (cli *Client) ConfigRemove(ctx context.Context, id string) error {
|
|
resp, err := cli.delete(ctx, "/configs/"+id, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|