mirror of
https://github.com/nezhahq/nezha.git
synced 2025-02-02 01:28:13 -05:00
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{
|
||
|
}
|