protobuf 代码生成

This commit is contained in:
奶爸
2019-12-05 23:42:20 +08:00
parent 3e5664d3ed
commit 6f623ff138
7 changed files with 60 additions and 28 deletions

13
proto/nezha.proto Normal file
View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package proto;
service NezhaService {
rpc ReportState(State)returns(Receipt){}
}
message State {
}
message Receipt{
}