mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-14 04:54:36 +08:00
28 lines
551 B
Go
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)
|
|
}
|