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.

28 lines
505 B

4 years ago
package main
import (
"fmt"
4 years ago
"github.com/xtls/xray-core/core"
"github.com/xtls/xray-core/main/commands/base"
4 years ago
)
var cmdVersion = &base.Command{
UsageLine: "{{.Exec}} version",
Short: "Show current version of Xray",
Long: `Version prints the build information for Xray executables.
`,
Run: executeVersion,
}
func executeVersion(cmd *base.Command, args []string) {
printVersion()
}
func printVersion() {
version := core.VersionStatement()
for _, s := range version {
fmt.Println(s)
}
}