(flags *CreateFlags, opts *cmd.Dependencies)
| 31 | } |
| 32 | |
| 33 | func NewCreateOptions(flags *CreateFlags, opts *cmd.Dependencies) *CreateOptions { |
| 34 | return &CreateOptions{ |
| 35 | CreateFlags: flags, |
| 36 | Dependencies: opts, |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func (co *CreateOptions) Commit() error { |
| 41 | projectGroup := projectgroups.NewProjectGroup(co.Name.Value) |