mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
21 lines
322 B
Go
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
|
|
}
|