Co-authored-by: hu55a1n1 <sufialhussaini@gmail.com> Co-authored-by: Ethan Buchman <ethan@coinculture.info> Co-authored-by: David Kajpust <kajpustd@gmail.com>
16 lines
229 B
Protocol Buffer
16 lines
229 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package mtcs;
|
|
|
|
service Clearing {
|
|
rpc Run (RunClearingRequest) returns (RunClearingResponse) {}
|
|
}
|
|
|
|
message RunClearingRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message RunClearingResponse {
|
|
string message = 1;
|
|
}
|