Skip to content

Commit

Permalink
chore: fix buf linters warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Valery Piashchynski <[email protected]>
  • Loading branch information
rustatian committed Feb 13, 2023
1 parent 1eb0fb7 commit 9abd0f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions service/v1/service.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
syntax = "proto3";

import "shared/v1/status.proto";

option go_package = "service/v1";

package service.v1;
Expand Down Expand Up @@ -32,7 +31,7 @@ message Status {
string command = 4;

// error state
shared.v1.status.Status status = 5;
shared.v1.Status status = 5;
}

message Service {
Expand Down
4 changes: 2 additions & 2 deletions shared/v1/status.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ syntax = "proto3";

import "google/protobuf/any.proto";

option go_package = "shared/v1/status";
package shared.v1.status;
option go_package = "status/v1";
package shared.v1;

// The `Status` type defines a logical error model that is suitable for
// different programming environments, including REST APIs and RPC APIs.
Expand Down

0 comments on commit 9abd0f4

Please sign in to comment.