mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 20:25:17 +00:00
13 lines
192 B
Go
13 lines
192 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var configCmd = &cobra.Command{
|
|
Use: "config",
|
|
Short: "Performs a configuration operation",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configCmd)
|
|
}
|