From 0046e8fb14ea7829d521618075003c65de5c7442 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Thu, 6 Aug 2020 01:12:34 +0300 Subject: [PATCH] [#32] container: Remove gogoproto from typedef There is a need to remove gogoproto usage from NeoFS API since this plugin is not cross-language. This commit removes usage from container package. Signed-off-by: Leonard Lyubich --- container/service.proto | 3 --- container/types.proto | 3 --- 2 files changed, 6 deletions(-) diff --git a/container/service.proto b/container/service.proto index 5f01591..2ae4ced 100644 --- a/container/service.proto +++ b/container/service.proto @@ -6,9 +6,6 @@ option csharp_namespace = "NeoFS.API.Container"; import "acl/types.proto"; import "container/types.proto"; import "refs/types.proto"; -import "github.com/gogo/protobuf/gogoproto/gogo.proto"; - -option (gogoproto.stable_marshaler_all) = true; // Service provides API to access container smart-contract in morph chain // via NeoFS node. diff --git a/container/types.proto b/container/types.proto index d3cc147..d9160ae 100644 --- a/container/types.proto +++ b/container/types.proto @@ -5,9 +5,6 @@ option csharp_namespace = "NeoFS.API.Container"; import "refs/types.proto"; import "github.com/nspcc-dev/netmap/selector.proto"; -import "github.com/gogo/protobuf/gogoproto/gogo.proto"; - -option (gogoproto.stable_marshaler_all) = true; // Container is a structure that defines object placement behaviour. Objects // can be stored only within containers. They define placement rule, attributes