cmd/protoc-gen-go-grpc: add --version flag support (#3921)

This commit is contained in:
Doug Fawley 2020-10-02 11:27:35 -07:00 коммит произвёл GitHub
Родитель d9063e7af3
Коммит 8fbea72764
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -32,14 +32,24 @@ package main
import (
"flag"
"fmt"
"google.golang.org/protobuf/compiler/protogen"
"google.golang.org/protobuf/types/pluginpb"
)
const version = "1.0"
var requireUnimplemented *bool
func main() {
showVersion := flag.Bool("version", false, "print the version and exit")
flag.Parse()
if *showVersion {
fmt.Printf("protoc-gen-go-grpc %v\n", version)
return
}
var flags flag.FlagSet
requireUnimplemented = flags.Bool("require_unimplemented_servers", true, "set to false to match legacy behavior")