mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
4d2e2b24d3
Thank @yuhan6665 for testing
21 lines
401 B
Go
21 lines
401 B
Go
package all
|
|
|
|
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"
|
|
)
|
|
|
|
// go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
|
|
|
func init() {
|
|
base.RootCommand.Commands = append(
|
|
base.RootCommand.Commands,
|
|
api.CmdAPI,
|
|
// cmdConvert,
|
|
tls.CmdTLS,
|
|
cmdUUID,
|
|
cmdX25519,
|
|
)
|
|
}
|