Skip to content

Commit

Permalink
Create specific handshake service
Browse files Browse the repository at this point in the history
Contributes to CURA-10714
  • Loading branch information
jellespijker committed Jul 5, 2023
1 parent 5bc540d commit 084fbf9
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
syntax = "proto3";

package cura.plugins.v0;
package cura.plugins.slots.handshake.v0;

message HandshakeRequest {
service HandshakeService {
rpc Call(CallRequest) returns (CallResponse) {}
}

message CallRequest {
string service_name = 1;
string version_range = 2;
}

message HandshakeResponse {
message CallResponse {
string slot_version = 1;
string plugin_name = 2;
string plugin_version = 3;
Expand Down

0 comments on commit 084fbf9

Please sign in to comment.