mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00: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)
|
|
}
|