(cmd *cobra.Command, project string)
| 50 | } |
| 51 | |
| 52 | func runDescProject(cmd *cobra.Command, project string) error { |
| 53 | projectInfo, err := descProject(project) |
| 54 | if err != nil { |
| 55 | return err |
| 56 | } |
| 57 | printProjectsOut(getFlagString(cmd, "out"), projectInfo) |
| 58 | return nil |
| 59 | } |
| 60 | |
| 61 | func descProject(project string) (*gitlab.Project, error) { |
| 62 | git, err := newGitlabClient() |
no test coverage detected