Skip to content

Commit

Permalink
[nspcc-dev#150] object: Define enum of status codes of common Object …
Browse files Browse the repository at this point in the history
…failures

Signed-off-by: Leonard Lyubich <[email protected]>
  • Loading branch information
Leonard Lyubich committed Oct 4, 2021
1 parent 29c2009 commit 1db0482
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions object/status.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
syntax = "proto3";

package neo.fs.v2.object;

option go_package = "github.com/nspcc-dev/neofs-api-go/v2/object/grpc;object";
option csharp_namespace = "Neo.FileStorage.API.Object";

import "status/types.proto";

enum StatusCommon {
ACCESS_DENIED = 0;
}

0 comments on commit 1db0482

Please sign in to comment.