()
| 38 | } |
| 39 | |
| 40 | func NewCreateFlags() *CreateFlags { |
| 41 | return &CreateFlags{ |
| 42 | Project: flag.New[string](FlagProject, false), |
| 43 | Name: flag.New[string](FlagName, false), |
| 44 | BaseBranch: flag.New[string](FlagBaseBranch, false), |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func NewCreateOptions(flags *CreateFlags, dependencies *cmd.Dependencies) *CreateOptions { |
| 49 | return &CreateOptions{ |
no outgoing calls