mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
17 lines
359 B
Go
17 lines
359 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// PluginSet modifies settings for an existing plugin
|
|
func (cli *Client) PluginSet(ctx context.Context, name string, args []string) error {
|
|
name, err := trimID("plugin", name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/plugins/"+name+"/set", nil, args, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|