github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/cmd/create/options/create_option.go (about) 1 package options 2 3 import "github.com/olli-ai/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 }