vendoring dependencies

This commit is contained in:
ngtuna
2016-07-18 23:23:39 +07:00
parent d5414877b5
commit 78feadc695
771 changed files with 129879 additions and 24277 deletions
+12
View File
@@ -0,0 +1,12 @@
package client
import (
"golang.org/x/net/context"
)
// CheckpointDelete deletes the checkpoint with the given name from the given container
func (cli *Client) CheckpointDelete(ctx context.Context, containerID string, checkpointID string) error {
resp, err := cli.delete(ctx, "/containers/"+containerID+"/checkpoints/"+checkpointID, nil, nil)
ensureReaderClosed(resp)
return err
}