1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-06 16:10:43 +00:00
v2fly/core.go
2015-09-29 11:52:34 +02:00

21 lines
322 B
Go

// Package core provides common definitions and functionalities of V2Ray.
package core
var (
version = "0.6.2"
build = "Custom"
)
const (
Codename = "Post Apocalypse"
Intro = "A stable and unbreakable connection for everyone."
)
func Version() string {
return version
}
func Build() string {
return build
}