frostfs-node/cmd/frostfs-cli/modules/bearer/root.go

15 lines
184 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)
}