mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 01:38:24 -04:00
29 lines
526 B
Go
29 lines
526 B
Go
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)
|
|
}
|
|
}
|