mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
7c1ab06206
* remove v2ctl, wv2ray * remove v2ctl, wv2ray build scripts * remove infra/control/main * remove !confonly flag * remove ctlcmd package * remove Confgi.Override func * move commands package into main
29 lines
490 B
Go
29 lines
490 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"v2ray.com/core"
|
|
"v2ray.com/core/main/commands/base"
|
|
)
|
|
|
|
// CmdVersion prints V2Ray Versions
|
|
var CmdVersion = &base.Command{
|
|
UsageLine: "{{.Exec}} version",
|
|
Short: "Print V2Ray Versions",
|
|
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)
|
|
}
|
|
}
|