Codebase list golang-github-gobuffalo-packr / d6a0115b-bf7c-4d07-9044-364e768bc742/main v2 / packr2 / cmd / version.go
d6a0115b-bf7c-4d07-9044-364e768bc742/main

Tree @d6a0115b-bf7c-4d07-9044-364e768bc742/main (Download .tar.gz)

version.go @d6a0115b-bf7c-4d07-9044-364e768bc742/mainraw · history · blame

package cmd

import (
	"fmt"

	packr "github.com/gobuffalo/packr/v2"
	"github.com/spf13/cobra"
)

var versionCmd = &cobra.Command{
	Use:	"version",
	Short:	"shows packr version",
	RunE: func(cmd *cobra.Command, args []string) error {
		fmt.Print(packr.Version)
		return nil
	},
}

func init() {
	rootCmd.AddCommand(versionCmd)
}