core.go 320 B

1234567891011121314151617181920
  1. // Package core provides common definitions and functionalities of V2Ray.
  2. package core
  3. var (
  4. version = "0.8"
  5. build = "Custom"
  6. )
  7. const (
  8. Codename = "Post Apocalypse"
  9. Intro = "A stable and unbreakable connection for everyone."
  10. )
  11. func Version() string {
  12. return version
  13. }
  14. func Build() string {
  15. return build
  16. }