Skip to content

Commit

Permalink
W-13680300 Add protobuf defintion for test response object
Browse files Browse the repository at this point in the history
  • Loading branch information
slodha committed Jul 14, 2023
1 parent 440f059 commit d29a6ea
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions carbonj.service/src/main/protobuf/TestResponse.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
syntax = "proto2";

package protobuf;

option java_package = "com.demandware.carbonj.service.engine.protobuf";
option java_outer_classname = "TestResponse";


message TestValue {
required string name = 1;
required double value = 2;
}

0 comments on commit d29a6ea

Please sign in to comment.