mirror of
https://github.com/lightninglabs/loop
synced 2024-11-06 03:20:38 +00:00
8 lines
241 B
Bash
8 lines
241 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# 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:. \
|
||
|
server.proto
|