2020-11-23 10:38:43 -05:00
|
|
|
package all
|
|
|
|
|
2020-11-30 07:08:08 -05:00
|
|
|
import (
|
2020-12-04 09:32:55 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/main/commands/all/api"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/main/commands/all/tls"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/main/commands/base"
|
2020-11-30 07:08:08 -05:00
|
|
|
)
|
2020-11-23 10:38:43 -05:00
|
|
|
|
|
|
|
// go:generate go run v2ray.com/core/common/errors/errorgen
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
base.RootCommand.Commands = append(
|
|
|
|
base.RootCommand.Commands,
|
2020-11-30 07:08:08 -05:00
|
|
|
api.CmdAPI,
|
2020-11-23 10:38:43 -05:00
|
|
|
cmdLove,
|
2020-11-30 07:08:08 -05:00
|
|
|
tls.CmdTLS,
|
2020-11-23 10:38:43 -05:00
|
|
|
cmdUUID,
|
|
|
|
cmdVerify,
|
2020-11-28 09:06:03 -05:00
|
|
|
|
|
|
|
// documents
|
|
|
|
docFormat,
|
|
|
|
docMerge,
|
2020-11-23 10:38:43 -05:00
|
|
|
)
|
|
|
|
}
|