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
320 B

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