10 lines
275 B
Batchfile
10 lines
275 B
Batchfile
@echo off
|
|
set dir=.\gen\go
|
|
|
|
if not exist %dir% mkdir %dir%
|
|
protoc -I . --go_out=plugins=grpc:%dir% bdchain/api/common.proto
|
|
protoc -I . --go_out=plugins=grpc:%dir% bdchain/api/tx_ledger.proto
|
|
protoc -I . --go_out=plugins=grpc:%dir% bdchain/api/ac_chain.proto
|
|
|
|
echo All Done!
|