2016-09-06 18:46:37 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
|
|
|
|
// ServiceRemove kills and removes a service.
|
|
|
|
func (cli *Client) ServiceRemove(ctx context.Context, serviceID string) error {
|
|
|
|
resp, err := cli.delete(ctx, "/services/"+serviceID, nil, nil)
|
|
|
|
ensureReaderClosed(resp)
|
2017-09-08 16:04:34 +00:00
|
|
|
return wrapResponseError(err, resp, "service", serviceID)
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|