package cmd import ( "fmt" "github.com/nitezs/sub2sing-box/constant" "github.com/spf13/cobra" ) var versionCmd = &cobra.Command{ Use: "version", Short: "Print version", Long: "Print version", Run: func(cmd *cobra.Command, args []string) { fmt.Println("version: " + constant.Version) }, } func init() { RootCmd.AddCommand(versionCmd) }