Skip to content

Commit

Permalink
keyservice: update protobuf to an recent release
Browse files Browse the repository at this point in the history
Signed-off-by: Morten Linderud <[email protected]>
  • Loading branch information
Foxboron authored and felixfontein committed Dec 2, 2024
1 parent 27dc305 commit 47a6c97
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 123 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ generate: keyservice/keyservice.pb.go
$(GO) generate

%.pb.go: %.proto
protoc --go_out=plugins=grpc:. $<
protoc --go_grpc_opt=require_unimplemented_servers=false --go_grpc_out=. --go_out=. $<

.PHONY: functional-tests
functional-tests:
Expand Down
126 changes: 4 additions & 122 deletions keyservice/keyservice.pb.go

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

2 changes: 2 additions & 0 deletions keyservice/keyservice.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto3";

option go_package = "./keyservice";

message Key {
oneof key_type {
KmsKey kms_key = 1;
Expand Down
146 changes: 146 additions & 0 deletions keyservice/keyservice_grpc.pb.go

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

0 comments on commit 47a6c97

Please sign in to comment.