0
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-08-22 14:38:34 +00:00
XTLS_Xray-core/main/commands/all/commands.go

22 lines
412 B
Go

package all
import (
"github.com/xtls/xray-core/main/commands/all/api"
"github.com/xtls/xray-core/main/commands/all/convert"
"github.com/xtls/xray-core/main/commands/all/tls"
"github.com/xtls/xray-core/main/commands/base"
)
func init() {
base.RootCommand.Commands = append(
base.RootCommand.Commands,
api.CmdAPI,
convert.CmdConvert,
tls.CmdTLS,
cmdUUID,
cmdX25519,
cmdWG,
cmdMLDSA65,
)
}