mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 02:47:26 +08:00
15 lines
186 B
Go
15 lines
186 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var tokenCmd = &cobra.Command{
|
|
Use: "token",
|
|
Short: "Performs a token operation",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(tokenCmd)
|
|
}
|