frostfs-node/cmd/frostfs-cli/modules/bearer/root.go
Anton Nikiforov 1589b2e7bd
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 4m16s
DCO action / DCO (pull_request) Successful in 4m32s
Build / Build Components (1.21) (pull_request) Successful in 9m16s
Pre-commit hooks / Pre-commit (pull_request) Successful in 9m56s
Build / Build Components (1.22) (pull_request) Successful in 9m56s
Tests and linters / Staticcheck (pull_request) Successful in 7m30s
Tests and linters / gopls check (pull_request) Successful in 7m32s
Tests and linters / Lint (pull_request) Successful in 8m16s
Tests and linters / Tests (1.21) (pull_request) Successful in 12m47s
Tests and linters / Tests with -race (pull_request) Successful in 12m40s
Tests and linters / Tests (1.22) (pull_request) Successful in 12m45s
[#1157] cli: Support adding APE overrides to Bearer token
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
2024-06-06 09:18:06 +03:00

15 lines
224 B
Go

package bearer
import (
"github.com/spf13/cobra"
)
var Cmd = &cobra.Command{
Use: "bearer",
Short: "Operations with bearer token",
}
func init() {
Cmd.AddCommand(createCmd)
Cmd.AddCommand(generateAPEOverrideCmd)
}