()
| 20 | ) |
| 21 | |
| 22 | func newOrganizationMemberCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "member", |
| 25 | Short: "Organization members management", |
| 26 | } |
| 27 | |
| 28 | cmd.AddCommand( |
| 29 | newOrganizationMemberList(), |
| 30 | newOrganizationMemberUpdateCmd(), |
| 31 | newOrganizationMemberDeleteCmd(), |
| 32 | newOrganizationInvitationCmd(), |
| 33 | ) |
| 34 | |
| 35 | return cmd |
| 36 | } |
no test coverage detected