Skip to content

Commit

Permalink
update proto with nil validation result
Browse files Browse the repository at this point in the history
  • Loading branch information
amirylm committed Sep 27, 2023
1 parent 1606a40 commit 3cec6d8
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 44 deletions.
83 changes: 43 additions & 40 deletions proto/main.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions proto/main.proto
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ message Message {
}

enum ValidationResult {
ACCEPT = 0;
IGNORE = 1;
REJECT = 2;
NIL = 0;
ACCEPT = 1;
IGNORE = 2;
REJECT = 3;
}

message ValidatedMessage {
Expand Down
2 changes: 1 addition & 1 deletion proto/main_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3cec6d8

Please sign in to comment.