8 lines
195 B
Batchfile
8 lines
195 B
Batchfile
@echo off
|
|
|
|
if not exist "./gen" (
|
|
mkdir "./gen"
|
|
)
|
|
|
|
protoc --proto_path=./sources --go_out=./gen --go-grpc_out=./gen ./sources/*.proto
|
|
xcopy "./gen/common" "../../../Server/common" /E /I /Y /Q |