18 lines
336 B
Go
18 lines
336 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// versionCmd represents the version command
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "Dispaly lightwalletd version",
|
|
Long: `Dispaly lightwalletd version.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("lightwalletd version v0.2.0")
|
|
},
|
|
}
|