v2fly/main/main.go

30 lines
639 B
Go
Raw Normal View History

2015-09-12 09:51:42 +00:00
package main
2015-09-12 18:36:21 +00:00
import (
"github.com/v2fly/v2ray-core/v5/main/commands"
"github.com/v2fly/v2ray-core/v5/main/commands/base"
_ "github.com/v2fly/v2ray-core/v5/main/distro/all"
2015-09-12 18:36:21 +00:00
)
2016-07-10 21:11:42 +00:00
func main() {
base.RootCommand.Long = "A unified platform for anti-censorship."
base.RegisterCommand(commands.CmdRun)
base.RegisterCommand(commands.CmdVersion)
base.RegisterCommand(commands.CmdTest)
base.SortLessFunc = runIsTheFirst
base.SortCommands()
base.Execute()
}
func runIsTheFirst(i, j *base.Command) bool {
left := i.Name()
right := j.Name()
if left == "run" {
return true
}
if right == "run" {
return false
2018-12-04 13:15:35 +00:00
}
return left < right
2015-09-12 09:51:42 +00:00
}