mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-01 03:14:16 +00:00
5c5b531562
Rename encoding/*pb to follow the convention of prefixing package names with 'proto': google.golang.org/protobuf/encoding/protojson google.golang.org/protobuf/encoding/prototext Move protogen under a compiler/ directory, just in case we ever do add more compiler-related packages. google.golang.org/protobuf/compiler/protogen Change-Id: I31010cb5cabcea8274fffcac468477b58b56e8eb Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/177178 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
24 lines
593 B
Go
24 lines
593 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// The protoc-gen-go-grpc binary is a protoc plugin to generate Go gRPC
|
|
// service definitions.
|
|
package main
|
|
|
|
import (
|
|
"google.golang.org/protobuf/cmd/protoc-gen-go-grpc/internal_gengogrpc"
|
|
"google.golang.org/protobuf/compiler/protogen"
|
|
)
|
|
|
|
func main() {
|
|
protogen.Run(nil, func(gen *protogen.Plugin) error {
|
|
for _, f := range gen.Files {
|
|
if f.Generate {
|
|
internal_gengogrpc.GenerateFile(gen, f)
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|