mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
83ca993c15
Signed-off-by: Anusha Ragunathan <anusha@docker.com>
19 lines
449 B
Go
19 lines
449 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginEnable enables a plugin
|
|
func (cli *Client) PluginEnable(ctx context.Context, name string, options types.PluginEnableOptions) error {
|
|
query := url.Values{}
|
|
query.Set("timeout", strconv.Itoa(options.Timeout))
|
|
|
|
resp, err := cli.post(ctx, "/plugins/"+name+"/enable", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|