forked from TrueCloudLab/frostfs-node
15 lines
182 B
Go
15 lines
182 B
Go
|
package token
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var Cmd = &cobra.Command{
|
||
|
Use: "token",
|
||
|
Short: "Operations with bearer token",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
Cmd.AddCommand(createCmd)
|
||
|
}
|