SpoofDPI/version/version.go

13 lines
246 B
Go
Raw Normal View History

2024-08-06 22:32:35 +00:00
package version
import _ "embed"
2024-08-06 22:38:16 +00:00
//go:embed VERSION
2024-08-06 22:32:35 +00:00
var VERSION string
func PrintVersion() {
println("spoof-dpi", "v" + VERSION)
2024-08-06 22:32:35 +00:00
println("A simple and fast anti-censorship tool written in Go.")
println("https://github.com/xvzc/SpoofDPI")
}