Codebase list golang-github-gobuffalo-packr / 32f9138 v2 / packr2 / cmd / version.go
32f9138

Tree @32f9138 (Download .tar.gz)

version.go @32f9138raw · 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.Println(packr.Version)
		return nil
	},
}

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