mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 12:15:18 +00:00
20 lines
290 B
Go
20 lines
290 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var allCmd = &cobra.Command{
|
|
Use: "all",
|
|
Short: "Mints all available token rewards",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("command not yet available")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
mintCmd.AddCommand(allCmd)
|
|
}
|