2018-02-05 16:05:59 -05:00
|
|
|
package checkpoint // import "github.com/docker/docker/api/server/router/checkpoint"
|
2016-05-12 10:52:00 -04:00
|
|
|
|
|
|
|
import "github.com/docker/docker/api/types"
|
|
|
|
|
|
|
|
// Backend for Checkpoint
|
|
|
|
type Backend interface {
|
|
|
|
CheckpointCreate(container string, config types.CheckpointCreateOptions) error
|
2016-09-19 12:01:16 -04:00
|
|
|
CheckpointDelete(container string, config types.CheckpointDeleteOptions) error
|
|
|
|
CheckpointList(container string, config types.CheckpointListOptions) ([]types.Checkpoint, error)
|
2016-05-12 10:52:00 -04:00
|
|
|
}
|