12 lines
353 B
Bash
12 lines
353 B
Bash
#!/bin/sh
|
|
|
|
#protoc --proto_path=$GOPATH/src:. \
|
|
# --go_out=. --go_opt=paths=source_relative \
|
|
# --go-grpc_out=. --go-grpc_opt=paths=source_relative \
|
|
# api.proto
|
|
|
|
#protoc -I=. -I=$GOPATH/src --go_out=plugins=grpc:. *.proto
|
|
|
|
protoc --go_out=. --go_opt=paths=source_relative \
|
|
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
|
|
*.proto |