From the course: Beginner's Guide to Go Protocol Buffer

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Challenge 1

Challenge 1

(upbeat music) - [Instructor] We have now arrived at our first challenge. In this challenge, you will be creating some protocol buffer messages in gRPC services. I have already created the test services and the handlers. I will show you how to implement the client and server in later videos. First up, the customer service. It will have two requests. The first is to sign up. To create a new user, it will take in username, password, and email, and the response will be the newly created user. The second request is to log in, and it will also take the username, password, and email, and the response will also be the user. This service is written in Go. Next up, the character service. There are also two requests, one to get all the characters, and one to get a specific character. This service is also written in Go. The third service is the product service. It takes three requests, one to get all the products, one to…

Contents