Just playing with gRPC in Go to create a little chat app, and, Bubble Tea because, well, why not! It's just an exercise for me to get better at Go.
- Initialize project with "go mod init gorpcchat"
- When adding a new import "go mod tidy"
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
- Modified chat/chat.proto
Generated objects using:
protoc --go_out=. --go_opt=paths=source_relative \
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
chat/chat.proto
