Skip to content

Commit

Permalink
Add new slot for gcode dialects
Browse files Browse the repository at this point in the history
Contributes to CURA-11042
  • Loading branch information
jellespijker committed Sep 22, 2023
1 parent 1f1ae87 commit 0e45235
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions cura/plugins/slots/dialect/v0/modify.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
syntax = "proto3";

package cura.plugins.slots.dialect.v0.modify;

service DialectModifyService {
rpc Call(CallRequest) returns (CallResponse) {}
}

message CallRequest {
string gcode_word = 1;
}

message CallResponse {
string gcode_word = 1;
}

0 comments on commit 0e45235

Please sign in to comment.