mirror of
https://github.com/crazy-max/diun.git
synced 2026-01-05 04:15:37 +01:00
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 27.3.1+incompatible to 28.3.3+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v27.3.1...v28.3.3) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-version: 28.3.3+incompatible dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
673 B
Go
19 lines
673 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types/checkpoint"
|
|
)
|
|
|
|
// CheckpointAPIClient defines API client methods for the checkpoints.
|
|
//
|
|
// Experimental: checkpoint and restore is still an experimental feature,
|
|
// and only available if the daemon is running with experimental features
|
|
// enabled.
|
|
type CheckpointAPIClient interface {
|
|
CheckpointCreate(ctx context.Context, container string, options checkpoint.CreateOptions) error
|
|
CheckpointDelete(ctx context.Context, container string, options checkpoint.DeleteOptions) error
|
|
CheckpointList(ctx context.Context, container string, options checkpoint.ListOptions) ([]checkpoint.Summary, error)
|
|
}
|