From 7f63a50ced61b1e7dc4c79c06d772c72cd43c168 Mon Sep 17 00:00:00 2001 From: chmanie Date: Fri, 9 Jun 2023 16:29:54 +0200 Subject: [PATCH] Pluralize arrays in protobuf --- crabidy-core/crabidy/v1/crabidy.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crabidy-core/crabidy/v1/crabidy.proto b/crabidy-core/crabidy/v1/crabidy.proto index fea0eaa..f1f00da 100644 --- a/crabidy-core/crabidy/v1/crabidy.proto +++ b/crabidy-core/crabidy/v1/crabidy.proto @@ -51,17 +51,17 @@ message GetLibraryNodeResponse { // Queue message QueueRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message QueueResponse {} message ReplaceRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message ReplaceResponse {} message AppendRequest { - repeated string uuid = 1; + repeated string uuids = 1; } message AppendResponse {} @@ -72,7 +72,7 @@ message RemoveResponse {} message InsertRequest { uint32 position = 1; - repeated string uuid = 2; + repeated string uuids = 2; } message InsertResponse {}