mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
13 lines
216 B
Go
13 lines
216 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var proverCmd = &cobra.Command{
|
|
Use: "prover",
|
|
Short: "Performs a configuration operation for given prover info",
|
|
}
|
|
|
|
func init() {
|
|
configCmd.AddCommand(proverCmd)
|
|
}
|