frostfs-node/cmd/neofs-cli/modules/token/root.go

15 lines
182 B
Go
Raw Normal View History

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