github.com/vieux/docker@v0.6.3-0.20161004191708-e097c2a938c7/cli/command/checkpoint/cmd.go (about)

     1  // +build !experimental
     2  
     3  package checkpoint
     4  
     5  import (
     6  	"github.com/docker/docker/cli/command"
     7  	"github.com/spf13/cobra"
     8  )
     9  
    10  // NewCheckpointCommand returns the `checkpoint` subcommand (only in experimental)
    11  func NewCheckpointCommand(dockerCli *command.DockerCli) *cobra.Command {
    12  	return &cobra.Command{}
    13  }