添加若干grpc接口的proto定义

This commit is contained in:
SocialSisterYi
2021-01-03 15:41:20 +08:00
parent 27a5968ebc
commit fe77d8aae7
14 changed files with 1767 additions and 0 deletions

8
grpc_api/comp_proto.bat Normal file
View File

@@ -0,0 +1,8 @@
@ echo off
rem 递归编译proto
set lang="python"
set patch=%CD%
for /r %patch% %%a in (*.proto) do (
protoc.exe -I %patch% --%lang%_out=. %%~fa
echo comp %%~fa ok!
)