Signed-off-by: boucher <rboucher@gmail.com> Upstream-commit: bd7d51292c399edba5f339e6be55fac6c0811ff5 Component: engine
11 lines
376 B
Go
11 lines
376 B
Go
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, config types.CheckpointDeleteOptions) error
|
|
CheckpointList(container string, config types.CheckpointListOptions) ([]types.Checkpoint, error)
|
|
}
|