From 0e45235882f7626dda78b7dacbf6ce1680963278 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 22 Sep 2023 16:55:09 +0200 Subject: [PATCH] Add new slot for gcode dialects Contributes to CURA-11042 --- cura/plugins/slots/dialect/v0/modify.proto | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cura/plugins/slots/dialect/v0/modify.proto diff --git a/cura/plugins/slots/dialect/v0/modify.proto b/cura/plugins/slots/dialect/v0/modify.proto new file mode 100644 index 0000000..aee38c0 --- /dev/null +++ b/cura/plugins/slots/dialect/v0/modify.proto @@ -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; +}