yao/cmd/version.go
2022-02-09 15:45:18 +08:00

18 lines
298 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
"github.com/yaoapp/yao/share"
)
var versionCmd = &cobra.Command{
Use: "version",
Short: L("Show version"),
Long: L("Show version"),
Run: func(cmd *cobra.Command, args []string) {
// Do Stuff Here
fmt.Println(share.VERSION)
},
}