mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 14:26:31 +00:00
13 lines
241 B
Go
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")
|
|
}
|