mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
20 lines
387 B
Go
20 lines
387 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,
|
|
)
|
|
}
|