mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
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)
|
|
}
|