mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d8fef66b03
Signed-off-by: boucher <rboucher@gmail.com>
12 lines
347 B
Go
12 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)
|
|
}
|