diff --git a/go.mod b/go.mod index 8a322371..52811a5e 100644 --- a/go.mod +++ b/go.mod @@ -36,6 +36,7 @@ require ( golang.org/x/sys v0.0.0-20201024232916-9f70ab9862d5 // indirect golang.org/x/tools v0.0.0-20200123022218-593de606220b // indirect google.golang.org/grpc v1.29.1 + google.golang.org/protobuf v1.23.0 ) // Used for debug reasons diff --git a/pkg/services/control/service.pb.go b/pkg/services/control/service.pb.go index 2186fc1e..c571ed0c 100644 Binary files a/pkg/services/control/service.pb.go and b/pkg/services/control/service.pb.go differ diff --git a/pkg/services/control/service.proto b/pkg/services/control/service.proto index 39c508cb..1cfdc6d2 100644 --- a/pkg/services/control/service.proto +++ b/pkg/services/control/service.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package control; -import "types.proto"; +import "pkg/services/control/types.proto"; option go_package = "github.com/nspcc-dev/neofs-node/pkg/services/control"; diff --git a/pkg/services/control/types.pb.go b/pkg/services/control/types.pb.go index c2f41370..ca731c48 100644 Binary files a/pkg/services/control/types.pb.go and b/pkg/services/control/types.pb.go differ