1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-23 21:54:42 -05:00
sub2sing-box/cmd/version.go
2024-09-19 18:12:24 +08:00

23 lines
354 B
Go

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)
}