# Functions

GetValues returns the values from the context.
InitContextValues initializes the CtxValues in the context with the given values and return the updated context.
IsShutdown checks to see if the shutdown error is contained in the specified error value.
NewAPI creates an API that handle a set of routes for the application.
No description provided by the author
NewRequestError creates a new RequestError with the provided error and HTTP status code.
NewShutdownError returns an error that causes the framework to signal a graceful shutdown.
Respond sends the JSON response to the client.
SetStatusCode sets the status code on the context.

# Structs

API represents a web application that hosts a REST API.
No description provided by the author
CtxValues represent state for each request.
RequestError represents an error with an HTTP status code.

# Interfaces

No description provided by the author

# Type aliases

Handler extends the http.HandlerFunc buy adding a context, params and an error to return.
Middleware is a func type that wraps around handlers.