ceremonyclient/client/cmd/all.go

20 lines
290 B
Go
Raw Permalink Normal View History

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) {
2024-10-14 01:37:19 +00:00
fmt.Println("command not yet available")
},
}
func init() {
mintCmd.AddCommand(allCmd)
}