Co-authored-by: Daniel Gushchyan <d.gushchyan@gmail.com> Co-authored-by: Ethan Buchman <ethan@coinculture.info> Co-authored-by: David Kajpust <kajpustd@gmail.com> Co-authored-by: Daniel Gushchyan <39884512+dangush@users.noreply.github.com> Co-authored-by: David Kajpust <davidkajpust@davids-mbp.home> Co-authored-by: dave <davidkajpust@informal.systems>
25 lines
367 B
Protocol Buffer
25 lines
367 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package transfers;
|
|
|
|
service Settlement {
|
|
rpc Run (UpdateRequest) returns (UpdateResponse) {}
|
|
rpc Query (QueryRequest) returns (QueryResponse) {}
|
|
}
|
|
|
|
message UpdateRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message UpdateResponse {
|
|
string message = 1;
|
|
}
|
|
|
|
message QueryRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message QueryResponse {
|
|
string message = 1;
|
|
}
|