# Packages
Package bind returns well known HTTP local bind addresses for Moov services.
# Functions
AddCORSHandler captures Corss Origin Resource Sharing (CORS) requests by looking at all OPTIONS requests for the Origin header, parsing that and responding back with the other Access-Control-Allow-* headers.
GetOrderBy returns the field names and direction to order the response by.
GetRequestID returns the Moov header value for request IDs.
GetSkipAndCount returns the skip and count pagination values from the query parameters - skip is the number of records to pass over before starting a search (max math.MaxInt32) - count is the number of records to retrieve in the search (max 10,000) - exists indicates if skip or count was passed into the request URL.
GetUserID returns the Moov userId from HTTP headers.
InternalError writes err to w while also setting the HTTP status code, content-type and marshaling err as the response body.
LimitedSkipCount returns the skip and count pagination values from the request's query parameters See GetSkipAndCount for descriptions of each parameter.
Problem writes err to w while also setting the HTTP status code, content-type and marshaling err as the response body.
SetAccessControlAllowHeaders writes Access-Control-Allow-* headers to a response to allow for further CORS-allowed requests.
Wrap returns a ResponseWriter usable by applications.
# Structs
No description provided by the author
ResponseWriter implements Go's standard library http.ResponseWriter to complete HTTP requests.
# Type aliases
No description provided by the author