mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 04:05: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)
|
||
|
}
|