mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -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
17 lines
349 B
Go
17 lines
349 B
Go
package base
|
|
|
|
// RootCommand is the root command of all commands
|
|
var RootCommand *Command
|
|
|
|
func init() {
|
|
RootCommand = &Command{
|
|
UsageLine: CommandEnv.Exec,
|
|
Long: "The root command",
|
|
}
|
|
}
|
|
|
|
// RegisterCommand register a command to RootCommand
|
|
func RegisterCommand(cmd *Command) {
|
|
RootCommand.Commands = append(RootCommand.Commands, cmd)
|
|
}
|