package cmd import ( "fmt" "github.com/dave/wasmgo/cmd/deployer" "github.com/spf13/cobra" ) func init() { rootCmd.AddCommand(versionCmd) } var versionCmd = &cobra.Command{ Use: "version", Short: "Show client version number", Run: func(cmd *cobra.Command, args []string) { fmt.Println(deployer.CLIENT_VERSION) }, }