ente/cli/cmd/version.go
2024-03-01 12:39:01 +05:30

22 lines
350 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// versionCmd represents the version command
var versionCmd = &cobra.Command{
Use: "version",
Short: "Prints the current version",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("Version %s\n", AppVersion)
},
}
func init() {
rootCmd.AddCommand(versionCmd)
}