()
| 20 | ) |
| 21 | |
| 22 | func newOrganizationCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "organization", |
| 25 | Aliases: []string{"org"}, |
| 26 | Short: "Organizations management", |
| 27 | } |
| 28 | |
| 29 | cmd.AddCommand( |
| 30 | newOrganizationList(), |
| 31 | newOrganizationCreateCmd(), |
| 32 | newOrganizationUpdateCmd(), |
| 33 | newOrganizationSet(), |
| 34 | newOrganizationLeaveCmd(), |
| 35 | newOrganizationDeleteCmd(), |
| 36 | newOrganizationDescribeCmd(), |
| 37 | newOrganizationAPITokenCmd(), |
| 38 | newOrganizationMemberCmd(), |
| 39 | ) |
| 40 | return cmd |
| 41 | } |
no test coverage detected