Importing Protobuf with Go Modules
Protocol buffers and gRPC are established standards for building modern web services. Go modules are now the default way of versioning packages in Go projects. How can you import and reuse existing .proto
definitions from your versioned dependencies while using Go modules? …