mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
322 B
21 lines
322 B
// 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
|
|
}
|