mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-09-16 11:43:16 +00:00
18 lines
283 B
Go
18 lines
283 B
Go
package all
|
|
|
|
import "github.com/v2fly/v2ray-core/v4/commands/base"
|
|
|
|
// go:generate go run v2ray.com/core/common/errors/errorgen
|
|
|
|
func init() {
|
|
base.RootCommand.Commands = append(
|
|
base.RootCommand.Commands,
|
|
cmdAPI,
|
|
cmdConvert,
|
|
cmdLove,
|
|
cmdTLS,
|
|
cmdUUID,
|
|
cmdVerify,
|
|
)
|
|
}
|