So I have the following, which seems incredibly hacky, and I've been thinking to myself that Go has better designed libraries than this, but I can't find an example of Go handling a POST request of JSON data. They are all form POSTs. Here is an example request: curl -X POST -d "{\"test\": \"that\"}" http://localhost:8082/test And here is the code, with the logs embedded: package main import ( "enc
