mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 06:15:51 +00:00
13 lines
245 B
Go
13 lines
245 B
Go
package version
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed VERSION
|
|
var VERSION string
|
|
|
|
func PrintVersion() {
|
|
println("spoofdpi", "v" + VERSION)
|
|
println("A simple and fast anti-censorship tool written in Go.")
|
|
println("https://github.com/xvzc/SpoofDPI")
|
|
}
|