gecko/vms/rpcchainvm/ghttp/gwriter/gwriterproto/gwriter.proto

16 lines
256 B
Protocol Buffer
Raw Normal View History

2020-04-16 23:03:17 -07:00
syntax = "proto3";
2020-04-17 06:47:19 -07:00
package gwriterproto;
2020-04-16 23:03:17 -07:00
message WriteRequest {
bytes payload = 1;
}
message WriteResponse {
int32 written = 1;
string error = 2;
bool errored = 3;
}
service Writer {
rpc Write(WriteRequest) returns (WriteResponse);
}