mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
From now on, there will be a file at common/version/version.go that includes current version number.
13 lines
213 B
Go
13 lines
213 B
Go
package version
|
|
|
|
import "strings"
|
|
|
|
var detailBuilder strings.Builder
|
|
|
|
func AddVersionDetail(detail string) {
|
|
detailBuilder.WriteString(detail)
|
|
}
|
|
|
|
func GetVersionDetail() string {
|
|
return detailBuilder.String()
|
|
}
|