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