mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
9 lines
271 B
Bash
Executable file
9 lines
271 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Generating faraday gRPC server protos"
|
|
|
|
# Generate the protos.
|
|
protoc -I/usr/local/include -I. \
|
|
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
--go_out=plugins=grpc,paths=source_relative:. \
|
|
rpc.proto
|