diff options
author | bojie <bojie@dexon.org> | 2018-12-28 13:15:06 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:55 +0800 |
commit | 9ca2a528ef0f3819b4921a33a3a2110d291707e0 (patch) | |
tree | 5520bb35b6de0ee1844f52f53a55c7b716955f49 /vendor/google.golang.org/grpc/codegen.sh | |
parent | fe239cd01509d340d3450e0275f60f0536ec5455 (diff) | |
download | go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar.gz go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar.bz2 go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar.lz go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar.xz go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.tar.zst go-tangerine-9ca2a528ef0f3819b4921a33a3a2110d291707e0.zip |
app: use gcp storage instead of azure for builds (#81)
* vendor: add dependencies for using GCP storage
* app: use gcp storage instead of azure for builds
Diffstat (limited to 'vendor/google.golang.org/grpc/codegen.sh')
-rwxr-xr-x | vendor/google.golang.org/grpc/codegen.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/google.golang.org/grpc/codegen.sh b/vendor/google.golang.org/grpc/codegen.sh new file mode 100755 index 000000000..4cdc6ba7c --- /dev/null +++ b/vendor/google.golang.org/grpc/codegen.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +# This script serves as an example to demonstrate how to generate the gRPC-Go +# interface and the related messages from .proto file. +# +# It assumes the installation of i) Google proto buffer compiler at +# https://github.com/google/protobuf (after v2.6.1) and ii) the Go codegen +# plugin at https://github.com/golang/protobuf (after 2015-02-20). If you have +# not, please install them first. +# +# We recommend running this script at $GOPATH/src. +# +# If this is not what you need, feel free to make your own scripts. Again, this +# script is for demonstration purpose. +# +proto=$1 +protoc --go_out=plugins=grpc:. $proto |