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"
|
2024-08-11 00:09:07 +08:00
|
|
|
"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,
|
2024-08-11 00:09:07 +08:00
|
|
|
convert.CmdConvert,
|
2020-12-04 09:36:16 +08:00
|
|
|
tls.CmdTLS,
|
2020-11-25 19:01:53 +08:00
|
|
|
cmdUUID,
|
2023-02-15 16:07:12 +00:00
|
|
|
cmdX25519,
|
2023-12-12 09:52:10 +08:00
|
|
|
cmdWG,
|
2020-11-25 19:01:53 +08:00
|
|
|
)
|
|
|
|
}
|