1#!/bin/sh 2# generate .pb.go file from .proto file. 3set -e 4protoc --go_out=plugins=grpc:. test.proto 5echo '//go:generate ./generate.sh 6' >> test.pb.go 7
View as plain text