(cmd *cobra.Command, group string)
| 48 | } |
| 49 | |
| 50 | func runDescGroup(cmd *cobra.Command, group string) error { |
| 51 | groupInfo, err := descGroup(group) |
| 52 | if err != nil { |
| 53 | return err |
| 54 | } |
| 55 | printGroupsOut(getFlagString(cmd, "out"), groupInfo) |
| 56 | return nil |
| 57 | } |
| 58 | |
| 59 | func descGroup(group string) (*gitlab.Group, error) { |
| 60 | git, err := newGitlabClient() |
no test coverage detected