mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7781a1bf0f
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
21 lines
475 B
Go
21 lines
475 B
Go
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
|
|
}
|