Xray-core/main/commands/all/commands.go

20 lines
387 B
Go
Raw Normal View History

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,
//cmdConvert,
tls.CmdTLS,
2020-11-25 11:01:53 +00:00
cmdUUID,
)
}