mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2025-11-03 03:27:27 +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)
|
||
|
|
}
|