Signed-off-by: boucher <rboucher@gmail.com> Upstream-commit: d8fef66b03c1ea8715470690efbd950033f7f628 Component: engine
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")
|
|
}
|