11 lines
		
	
	
		
			282 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			282 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!
 | |
| pause.
 |