()
| 26 | } |
| 27 | |
| 28 | func NewCreateFlags() *CreateFlags { |
| 29 | return &CreateFlags{ |
| 30 | Name: flag.New[string](FlagName, false), |
| 31 | Description: flag.New[string](FlagDescription, false), |
| 32 | Tag: flag.New[[]string](FlagTag, false), |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | func NewCmdCreate(f factory.Factory) *cobra.Command { |
| 37 | createFlags := NewCreateFlags() |