github.com/jenkins-x/jx/v2@v2.1.155/pkg/cmd/create/options/create_option.go (about) 1 package options 2 3 import "github.com/jenkins-x/jx/v2/pkg/cmd/opts" 4 5 // CreateOptions contains the command line options 6 type CreateOptions struct { 7 *opts.CommonOptions 8 9 DisableImport bool 10 OutDir string 11 } 12 13 // Run implements this command 14 func (o *CreateOptions) Run() error { 15 return o.Cmd.Help() 16 }