()
| 20 | ) |
| 21 | |
| 22 | func newOrganizationAPITokenCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "api-token", |
| 25 | Aliases: []string{"token"}, |
| 26 | Short: "API token management", |
| 27 | Long: "Manage API tokens to authenticate with the Chainloop API or perform attestations.", |
| 28 | } |
| 29 | |
| 30 | cmd.AddCommand(newAPITokenCreateCmd(), newAPITokenListCmd(), newAPITokenRevokeCmd()) |
| 31 | |
| 32 | return cmd |
| 33 | } |
no test coverage detected