You have a small collection of retro video games and you want to build a microservice API to manage them. In the spirit of microservices, you want to keeping the code base to one entity, game
s. This microservice will provide functionality to create, get, view, and delete a game
entity. Within this lab, you will implement the functionality to create and view these entities. It will also be RESTFUL (reading and writing JSON), and provide endpoints to return a collection of game
s.
Upon completion of this lab you will be able to:
This lab is intended for:
You should possess:
The following content is sufficient to fulfill these prerequisites:
October 4th, 2021 - Made the command to rebuild and run the api server explicit in the Retrieving Data From the Database lab step
August 15th, 2021 - Increased lab duration
May 26th, 2021 - Added instructions to include imports in the handler.go
file as needed when they are not automatically added