(ch *cmdutil.Helper)
| 6 | ) |
| 7 | |
| 8 | func AnnotationsCmd(ch *cmdutil.Helper) *cobra.Command { |
| 9 | annotationsCmd := &cobra.Command{ |
| 10 | Use: "annotations", |
| 11 | Short: "Manage annotations for project in an organization", |
| 12 | } |
| 13 | |
| 14 | annotationsCmd.AddCommand(GetCmd(ch)) |
| 15 | annotationsCmd.AddCommand(SetCmd(ch)) |
| 16 | |
| 17 | return annotationsCmd |
| 18 | } |