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

22 lines
410 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package all
2020-12-04 03:36:16 +02:00
import (
"github.com/xtls/xray-core/main/commands/all/api"
"github.com/xtls/xray-core/main/commands/all/tls"
"github.com/xtls/xray-core/main/commands/base"
)
2020-11-25 13:01:53 +02:00
2020-12-04 03:36:16 +02:00
// go:generate go run github.com/xtls/xray-core/common/errors/errorgen
2020-11-25 13:01:53 +02:00
func init() {
base.RootCommand.Commands = append(
base.RootCommand.Commands,
2020-12-04 03:36:16 +02:00
api.CmdAPI,
2021-10-19 19:57:14 +03:00
// cmdConvert,
2020-12-04 03:36:16 +02:00
tls.CmdTLS,
2020-11-25 13:01:53 +02:00
cmdUUID,
cmdX25519,
cmdWG,
2020-11-25 13:01:53 +02:00
)
}