mirror of
https://github.com/docker/cli.git
synced 2026-01-25 03:42:05 +03:00
Signed-off-by: boucher <rboucher@gmail.com> Upstream-commit: d8fef66b03c1ea8715470690efbd950033f7f628 Component: engine
13 lines
347 B
Go
13 lines
347 B
Go
// +build experimental
|
|
|
|
package checkpoint
|
|
|
|
import "github.com/docker/docker/api/types"
|
|
|
|
// Backend for Checkpoint
|
|
type Backend interface {
|
|
CheckpointCreate(container string, config types.CheckpointCreateOptions) error
|
|
CheckpointDelete(container string, checkpointID string) error
|
|
CheckpointList(container string) ([]types.Checkpoint, error)
|
|
}
|