Signed-off-by: boucher <rboucher@gmail.com> Upstream-commit: 67f607a02f8e86586f3984c7fd24961deba29b8b Component: engine
13 lines
302 B
Go
13 lines
302 B
Go
// +build !experimental
|
|
|
|
package checkpoint
|
|
|
|
import (
|
|
"github.com/docker/docker/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewCheckpointCommand appends the `checkpoint` subcommands to rootCmd (only in experimental)
|
|
func NewCheckpointCommand(rootCmd *cobra.Command, dockerCli *command.DockerCli) {
|
|
}
|