14 lines
145 B
Protocol Buffer
14 lines
145 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package proto;
|
||
|
|
||
|
service NezhaService {
|
||
|
rpc ReportState(State)returns(Receipt){}
|
||
|
}
|
||
|
|
||
|
message State {
|
||
|
}
|
||
|
|
||
|
message Receipt{
|
||
|
}
|