# README
CloudEvent gRPC Protobuf Definitions
Overview
This repository includes the protobuf message and RPC method definitions for CloudEvent gRPC service, along with the corresponding Go code generated from these definitions.
Getting Started
Prerequisites
Make sure you have the following tools installed:
- Protocol Compiler (protoc)
- Go plugins for the protocol compiler:
$ go install google.golang.org/protobuf/cmd/protoc-gen-go
$ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
Updating CloudEvent gRPC Service
-
Modify the
*.proto
files to reflect your desired changes. -
Run the following command to update the generated code:
go generate
This step is crucial to ensure that your changes are applied to both the gRPC server and client stub.