mirror of https://github.com/docker/cli.git
10 lines
238 B
Go
10 lines
238 B
Go
|
// +build experimental
|
||
|
|
||
|
package container
|
||
|
|
||
|
import "github.com/spf13/pflag"
|
||
|
|
||
|
func addExperimentalStartFlags(flags *pflag.FlagSet, opts *startOptions) {
|
||
|
flags.StringVar(&opts.checkpoint, "checkpoint", "", "Restore from this checkpoint")
|
||
|
}
|