1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 00:45:24 +00:00
v2fly/core.go
2015-10-13 14:30:37 +02:00

20 lines
366 B
Go

// Package core provides common definitions and functionalities of V2Ray.
package core
import (
"fmt"
)
var (
version = "0.8"
build = "Custom"
codename = "Post Apocalypse"
intro = "A stable and unbreakable connection for everyone."
)
func PrintVersion() {
fmt.Printf("V2Ray %s (%s) %s", version, codename, build)
fmt.Println()
fmt.Println(intro)
}