1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package commands
|
| import (
| "fmt"
|
| core "github.com/v2fly/v2ray-core/v5"
| "github.com/v2fly/v2ray-core/v5/main/commands/base"
| )
|
| // CmdVersion prints V2Ray Versions
| var CmdVersion = &base.Command{
| UsageLine: "{{.Exec}} version",
| Short: "print V2Ray version",
| Long: `Prints the build information for V2Ray.
| `,
| Run: executeVersion,
| }
|
| func executeVersion(cmd *base.Command, args []string) {
| printVersion()
| }
|
| func printVersion() {
| version := core.VersionStatement()
| for _, s := range version {
| fmt.Println(s)
| }
| }
|
|