2020-11-25 11:01:53 +00:00
|
|
|
package all
|
|
|
|
|
2020-12-04 01:36:16 +00:00
|
|
|
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"
|
|
|
|
)
|
2020-11-25 11:01:53 +00:00
|
|
|
|
2020-12-04 01:36:16 +00:00
|
|
|
// go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
2020-11-25 11:01:53 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
base.RootCommand.Commands = append(
|
|
|
|
base.RootCommand.Commands,
|
2020-12-04 01:36:16 +00:00
|
|
|
api.CmdAPI,
|
2021-10-19 16:57:14 +00:00
|
|
|
// cmdConvert,
|
2020-12-04 01:36:16 +00:00
|
|
|
tls.CmdTLS,
|
2020-11-25 11:01:53 +00:00
|
|
|
cmdUUID,
|
|
|
|
)
|
|
|
|
}
|