mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 07:03:02 +00:00
7086d286be
* Add feature migration notice * Remove legacy code of transport processing * Clear legacy proto field * Fix missing * Unify protocolname * Test remove * Supressor * Weird code * Remove errorgen related comments
21 lines
398 B
Go
21 lines
398 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,
|
|
)
|
|
}
|