Files
tun2socks/internal/version/version.go
2024-07-22 08:34:24 +08:00

28 lines
551 B
Go

package version
import (
"fmt"
"runtime"
"strings"
)
const Name = "tun2socks"
var (
// Version can be set at link time by executing
// the command: `git describe --abbrev=0 --tags HEAD`
Version string
// GitCommit can be set at link time by executing
// the command: `git rev-parse --short HEAD`
GitCommit string
)
func String() string {
return fmt.Sprintf("%s-%s", Name, strings.TrimPrefix(Version, "v"))
}
func BuildString() string {
return fmt.Sprintf("%s/%s, %s, %s", runtime.GOOS, runtime.GOARCH, runtime.Version(), GitCommit)
}