1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-25 21:36:13 -04:00
v2fly/core.go
2015-10-18 13:14:23 +02:00

21 lines
460 B
Go

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