mirror of https://github.com/docker/cli.git
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) {
|
|
}
|