1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-06 16:10:43 +00:00
v2fly/core.go

21 lines
322 B
Go
Raw Normal View History

2015-09-07 10:00:46 +00:00
// Package core provides common definitions and functionalities of V2Ray.
package core
2015-09-16 14:05:59 +00:00
2015-09-29 09:52:34 +00:00
var (
version = "0.6.2"
build = "Custom"
)
2015-09-16 14:05:59 +00:00
const (
2015-09-18 09:59:36 +00:00
Codename = "Post Apocalypse"
2015-09-18 12:59:02 +00:00
Intro = "A stable and unbreakable connection for everyone."
2015-09-16 14:05:59 +00:00
)
2015-09-29 09:52:34 +00:00
func Version() string {
return version
}
func Build() string {
return build
}