# Functions
DecodeGet parses the GET parameters of the request into `ret` using github.com/gorilla/schema.
DecodeJSON parses the request body into `ret` as JSON.
DecodePost parses the POST parameters of the request into `ret` using github.com/gorilla/schema.
DoRespond executes a HttpResponse and has it write to the ResponseWriter.
# Variables
ErrorHandlerContextKey is used to store an ErrorHandler in the context.
# Interfaces
HttpResponse is what is to be returned from request handlers.
# Type aliases
ErrorHandler is a callback type that you can register with ContextWithErrorHandler or WithErrorHandler to have your own callback called to render errors.