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,
|
2023-02-15 18:07:12 +02:00
|
|
|
cmdX25519,
|
2023-12-12 03:52:10 +02:00
|
|
|
cmdWG,
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
}
|