SpoofDPI/version.go
2024-08-07 07:32:35 +09:00

13 lines
241 B
Go

package version
import _ "embed"
//go:embed .version
var VERSION string
func PrintVersion() {
println("spoof-dpi", VERSION)
println("A simple and fast anti-censorship tool written in Go.")
println("https://github.com/xvzc/SpoofDPI")
}