reflector.go/cmd/version.go
2020-10-05 18:08:53 -04:00

21 lines
331 B
Go

package cmd
import (
"fmt"
"github.com/lbryio/reflector.go/meta"
"github.com/spf13/cobra"
)
func init() {
var cmd = &cobra.Command{
Use: "version",
Short: "Print the version",
Run: versionCmd,
}
rootCmd.AddCommand(cmd)
}
func versionCmd(cmd *cobra.Command, args []string) {
fmt.Println(meta.VersionString())
}