1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00
v2fly/core.go
Claire Raymond c592d9c246 update
2015-10-15 11:25:57 +00: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.8"
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.Print("%s%s", intro, platform.LineSeparator())
}