ceremonyclient/client/cmd/token.go

15 lines
186 B
Go
Raw Normal View History

package cmd
import (
"github.com/spf13/cobra"
)
var tokenCmd = &cobra.Command{
Use: "token",
Short: "Performs a token operation",
}
func init() {
rootCmd.AddCommand(tokenCmd)
}