brew install golang
go get github.com/gorilla/mux
go run *.go
Visit localhost:8080/cars
curl http://localhost:8080/cars
curl http://localhost:8080/cars/1
curl -X POST -H "Content-Type: application/json" -d '{"id": 3, "make": "Alfa Romeo", "model": "8C", "year": 2017, "transmission": {"type": "Dual Dry Clutch", "gears": 6}}' http://localhost:8080/cars
curl -X DELETE http://localhost:8080/cars/1