(group string)
| 57 | } |
| 58 | |
| 59 | func descGroup(group string) (*gitlab.Group, error) { |
| 60 | git, err := newGitlabClient() |
| 61 | if err != nil { |
| 62 | return nil, err |
| 63 | } |
| 64 | groupInfo, _, err := git.Groups.GetGroup(group) |
| 65 | if err != nil { |
| 66 | return nil, err |
| 67 | } |
| 68 | return groupInfo, nil |
| 69 | } |
no test coverage detected