gRPC Reference: Protobuf, Go/Python Servers, Streaming and gRPC-Gateway
gRPC patterns that aren't obvious from the official docs.
Always embed UnimplementedXxx in Go servers
type UserServer struct {
usersv1.UnimplementedUserServiceServer // forward-compat
db *DB
}
Without this, adding a new RPC method to the p...
releaserun.hashnode.dev1 min read