Xray-core/main/commands/all/commands.go

21 lines
398 B
Go
Raw Normal View History

2020-11-25 19:01:53 +08:00
package all
2020-12-04 09:36:16 +08:00
import (
"github.com/xtls/xray-core/main/commands/all/api"
"github.com/xtls/xray-core/main/commands/all/convert"
2020-12-04 09:36:16 +08:00
"github.com/xtls/xray-core/main/commands/all/tls"
"github.com/xtls/xray-core/main/commands/base"
)
2020-11-25 19:01:53 +08:00
func init() {
base.RootCommand.Commands = append(
base.RootCommand.Commands,
2020-12-04 09:36:16 +08:00
api.CmdAPI,
convert.CmdConvert,
2020-12-04 09:36:16 +08:00
tls.CmdTLS,
2020-11-25 19:01:53 +08:00
cmdUUID,
cmdX25519,
cmdWG,
2020-11-25 19:01:53 +08:00
)
}