# Functions
Body returns request body as []byte (slice of bytes).
Context returns request context as context.Context object.
Cookie returns request cookie by provided key.
Cookies return all cookies as map.
CookiesRaw return all cookies as http.Cookie slice.
Created is wrap function over [Success] function.
Error is wrap function above [Failure] function with auto defining status code by provided error.
Failure returns response with some error status and convert provided error to errorOutput object and then convert it to JSON response.
File returns file as []byte (slice of bytes) from request by file name.
Header returns request header by provided key.
Headers return all headers as map with joined values.
HeadersRaw return all headers as map with slice of values.
No description provided by the author
Ok is wrap function over [Success] function.
OkRaw is wrap function over [SuccessRaw] function.
Param returns [param.Param] object got from named path variable or not found param error.
Parse try to parse request body to provided export object (must be pointer to structure object).
ParseForm get all form data object and convert them to map with [param.Param] objects.
QueryParam returns query param variable as [param.Param] object or empty [param.Param] object if query param is not found.
Raw if middleware set, all responses by this middleware will be returned in "raw" way (no successOutput object).
ReturnExcel returns response with Excel file content type.
SetCookie sets new cookie to response.
SetHeader sets new header to response.
Success returns response with success code & successOutput object and convert it to JSON response.
SuccessRaw returns response in "raw" way.
No description provided by the author