github.com/jenkins-x/jx/v2@v2.1.155/pkg/cmd/step/restore/step_restore.go (about) 1 package restore 2 3 import ( 4 "github.com/jenkins-x/jx/v2/pkg/cmd/helper" 5 "github.com/jenkins-x/jx/v2/pkg/cmd/opts" 6 "github.com/jenkins-x/jx/v2/pkg/cmd/opts/step" 7 "github.com/spf13/cobra" 8 ) 9 10 // StepRestoreOptions contains the command line flags 11 type StepRestoreOptions struct { 12 step.StepOptions 13 } 14 15 // NewCmdStepRestore performs the command setup 16 func NewCmdStepRestore(commonOpts *opts.CommonOptions) *cobra.Command { 17 options := &StepRestoreOptions{ 18 StepOptions: step.StepOptions{ 19 CommonOptions: commonOpts, 20 }, 21 } 22 23 cmd := &cobra.Command{ 24 Use: "restore", 25 Short: "restore [command]", 26 Run: func(cmd *cobra.Command, args []string) { 27 options.Cmd = cmd 28 options.Args = args 29 err := options.Run() 30 helper.CheckErr(err) 31 }, 32 } 33 cmd.AddCommand(NewCmdStepRestoreFromBackup(commonOpts)) 34 return cmd 35 } 36 37 // Run implements this command 38 func (o *StepRestoreOptions) Run() error { 39 return o.Cmd.Help() 40 }