mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-30 21:26:33 -05:00
7c1ab06206
* remove v2ctl, wv2ray * remove v2ctl, wv2ray build scripts * remove infra/control/main * remove !confonly flag * remove ctlcmd package * remove Confgi.Override func * move commands package into main
26 lines
406 B
Go
26 lines
406 B
Go
package all
|
|
|
|
import (
|
|
"v2ray.com/core/main/commands/all/api"
|
|
"v2ray.com/core/main/commands/all/tls"
|
|
"v2ray.com/core/main/commands/base"
|
|
)
|
|
|
|
// go:generate go run v2ray.com/core/common/errors/errorgen
|
|
|
|
func init() {
|
|
base.RootCommand.Commands = append(
|
|
base.RootCommand.Commands,
|
|
api.CmdAPI,
|
|
cmdConvert,
|
|
cmdLove,
|
|
tls.CmdTLS,
|
|
cmdUUID,
|
|
cmdVerify,
|
|
|
|
// documents
|
|
docFormat,
|
|
docMerge,
|
|
)
|
|
}
|