7 lines
124 B
Bash
7 lines
124 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
protoc -I/usr/local/include -I. \
|
||
|
-I$GOPATH/src \
|
||
|
--go_out=plugins=grpc:. \
|
||
|
walletkit.proto
|