mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7c36a1af03
This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
23 lines
499 B
Go
23 lines
499 B
Go
// +build experimental
|
|
|
|
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginList returns the installed plugins
|
|
func (cli *Client) PluginList(ctx context.Context) (types.PluginsListResponse, error) {
|
|
var plugins types.PluginsListResponse
|
|
resp, err := cli.get(ctx, "/plugins", nil, nil)
|
|
if err != nil {
|
|
return plugins, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&plugins)
|
|
ensureReaderClosed(resp)
|
|
return plugins, err
|
|
}
|