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