Xray-core/main/commands/all/commands.go
Kobe Arthur Scofield 7086d286be
Remove legacy code (#3838)
* 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
2024-09-23 11:28:19 -04:00

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,
)
}