mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f23c00d870
remove unnescessary import aliases, brackets, and so on. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
484 B
Go
20 lines
484 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
)
|
|
|
|
// NodeRemove removes a Node.
|
|
func (cli *Client) NodeRemove(ctx context.Context, nodeID string, options types.NodeRemoveOptions) error {
|
|
query := url.Values{}
|
|
if options.Force {
|
|
query.Set("force", "1")
|
|
}
|
|
|
|
resp, err := cli.delete(ctx, "/nodes/"+nodeID, query, nil)
|
|
ensureReaderClosed(resp)
|
|
return wrapResponseError(err, resp, "node", nodeID)
|
|
}
|