1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-18 17:54:30 -04:00
v2fly/main/commands/all/engineering/engineering.go

22 lines
455 B
Go
Raw Normal View History

2021-06-19 18:50:12 -04:00
package engineering
import "github.com/v2fly/v2ray-core/v5/main/commands/base"
2021-06-19 18:50:12 -04:00
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
2021-06-19 18:50:12 -04:00
var cmdEngineering = &base.Command{
UsageLine: "{{.Exec}} engineering",
Commands: []*base.Command{
cmdConvertPb,
cmdReversePb,
2023-11-21 18:03:20 -05:00
cmdNonNativeLinkExtract,
cmdNonNativeLinkExec,
cmdSubscriptionEntriesExtract,
cmdEncodeDataURL,
2021-06-19 18:50:12 -04:00
},
}
func init() {
base.RegisterCommand(cmdEngineering)
}