mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
541 B
13 lines
541 B
4 years ago
|
package core
|
||
|
|
||
|
import "path/filepath"
|
||
|
|
||
|
//go:generate go install -v google.golang.org/protobuf/cmd/protoc-gen-go
|
||
|
//go:generate go install -v google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||
|
//go:generate go install -v github.com/gogo/protobuf/protoc-gen-gofast
|
||
|
//go:generate go run ../infra/vprotogen/main.go
|
||
|
|
||
|
// ProtoFilesUsingProtocGenGoFast is the map of Proto files
|
||
|
// that use `protoc-gen-gofast` to generate pb.go files
|
||
|
var ProtoFilesUsingProtocGenGoFast = map[string]bool{filepath.Join("proxy", "vless", "encoding", "addons.proto"): true}
|