Versions in this module Expand all Collapse all v1 v1.1.0 Feb 5, 2025 v1.0.0 Jan 22, 2025 Changes in this version + type Context struct + BODY []byte + COOKIE map[string]*http.Cookie + ENV map[string]string + FILE map[string][]*multipart.FileHeader + GET map[string]string + POST map[string]string + REQUEST map[string]string + SERVER map[string]string + STORE map[string]interface{} + TimeS int64 + func New(w http.ResponseWriter, r *http.Request, debug bool) *Context + func (this *Context) Body() []byte + func (this *Context) Cookie(k string) *http.Cookie + func (this *Context) CookieParameter(k string) *_parameter.Parameter + func (this *Context) CookieValue(k string, v string) string + func (this *Context) CookieValueAll() map[string]string + func (this *Context) File(k string) []*multipart.FileHeader + func (this *Context) GetParameter(k string) *_parameter.Parameter + func (this *Context) GetValue(k string, v string) string + func (this *Context) GetValueAll() map[string]string + func (this *Context) JSON(data any) + func (this *Context) PostParameter(k string) *_parameter.Parameter + func (this *Context) PostValue(k string, v string) string + func (this *Context) PostValueAll() map[string]string + func (this *Context) REDIRECT(uri string) + func (this *Context) RequestParameter(k string) *_parameter.Parameter + func (this *Context) RequestValue(k string, v string) string + func (this *Context) RequestValueAll() map[string]string + func (this *Context) ServerParameter(k string) *_parameter.Parameter + func (this *Context) ServerValue(k string, v string) string + func (this *Context) ServerValueAll() map[string]string + func (this *Context) SetCookie(cookie *http.Cookie) *Context + func (this *Context) SetHeader(k string, v string) *Context