1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-25 00:54:42 -05:00
sub2sing-box/cmd/root.go

12 lines
146 B
Go
Raw Normal View History

2024-03-11 05:31:29 -04:00
package cmd
2024-03-12 12:11:34 -04:00
import (
"github.com/spf13/cobra"
)
2024-03-11 05:31:29 -04:00
var RootCmd = &cobra.Command{}
2024-03-12 12:11:34 -04:00
func SetVersion(version string) {
RootCmd.Version = version
2024-03-11 05:31:29 -04:00
}