mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 12:09:19 +02:00
16 lines
276 B
Go
16 lines
276 B
Go
package all
|
|
|
|
import "github.com/xtls/xray-core/v1/main/commands/base"
|
|
|
|
// go:generate go run github.com/xtls/xray-core/v1/common/errors/errorgen
|
|
|
|
func init() {
|
|
base.RootCommand.Commands = append(
|
|
base.RootCommand.Commands,
|
|
cmdAPI,
|
|
cmdConvert,
|
|
cmdTLS,
|
|
cmdUUID,
|
|
)
|
|
}
|