mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
12 lines
349 B
Go
12 lines
349 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginSet modifies settings for an existing plugin
|
|
func (cli *Client) PluginSet(ctx context.Context, name string, args []string) error {
|
|
resp, err := cli.post(ctx, "/plugins/"+name+"/set", nil, args, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|