AI Features

Solution 4: Working with gRPC

Let’s solve the challenge set in the previous lesson.

We'll cover the following...

Solution

To execute the client side, open a new terminal window and run the following commands:

export GOROOT=/usr/local/go; export GOPATH=$HOME/go; export PATH=$GOPATH/bin:$GOROOT/bin:$PATH; cd usercode;
go run gClient.go

Here is ...