1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-06-07 08:13:35 -04:00
v2fly/core.go

21 lines
320 B
Go
Raw Normal View History

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