# download repository
git clone git@github.com:andersonbosa/go-restful-api.git
# enter in the package folder
cd go-restful-api/go-restful-api
# install dependencies
go get .
# run the Gin server
go run .
I did use
httpiein the following snippets.
GET /albumshttp http://localhost:8080/albums

GET /albums/:idhttp http://localhost:8080/albums/2

POST /albumshttp POST http://localhost:8080/albums \
--raw '{"id": "4","title": "The Modern Sound of Betty Carter","artist": "Betty Carter","price": 49.99}'
