Go REST API (Part 4)

So we’ve built a working API server, but the only way we’ve tested the endpoints is by hammering them with curl, but why not use Go’s built in testing mechanism, go test?

Go REST API (Part 3)

In this post we are going to expand on our REST API server enabling methods for replacing a user using PUT and updating a user using both PATCH.