Add dispute agents service proto def to grpc.proto

This commit is contained in:
ghubstan 2020-09-14 10:44:19 -03:00
parent 359037a3ba
commit 15b6044587
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -23,6 +23,23 @@ import "pb.proto";
option java_package = "bisq.proto.grpc"; option java_package = "bisq.proto.grpc";
option java_multiple_files = true; option java_multiple_files = true;
///////////////////////////////////////////////////////////////////////////////////////////
// DisputeAgents
///////////////////////////////////////////////////////////////////////////////////////////
service DisputeAgents {
rpc RegisterDisputeAgent (RegisterDisputeAgentRequest) returns (RegisterDisputeAgentReply) {
}
}
message RegisterDisputeAgentRequest {
string disputeAgentType = 1;
string registrationKey = 2;
}
message RegisterDisputeAgentReply {
}
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////
// Offers // Offers
/////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////