1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-30 21:26:33 -05:00
v2fly/main/commands/all/commands.go
Jebbs 7c1ab06206
v5: Remove v2ctl & wv2ray (#488)
* 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
2020-12-04 22:32:55 +08:00

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,
)
}