Creating an Api in Go is very simple, the Standard library gives you all the tools needed. For instance, imagine you have a movies microservice which is responsible for all CRUD operations for a vintage VHS movie store.
Suppose you have a Movie structure as described below:
type Movie struct {
id int
name string