Versions in this module Expand all Collapse all v0 v0.0.1 Sep 2, 2020 Changes in this version + type RequestContract interface + Accepts func() []byte + Authorization func() []byte + BearerToken func() ([]byte, error) + Context func() context.Context + ExceptsJson func() bool + Get func(key string) []byte + GetClientIp func() string + GetContent func() []byte + GetInt func(key string) (int, error) + GetInt64 func(key string) (int64, error) + GetMethod func() string + GetPathBytes func() []byte + GetSignature func() []byte + GetString func(key string) string + GetUint64 func(key string) (uint64, error) + GetUri func() []byte + Header func(key string) []byte + HeaderString func(key string) string + IsXmlHttpRequest func() bool + Param func(key string) string + ParamInt func(key string) (int, error) + ParamInt64 func(key string) (int64, error) + ParamUint64 func(key string) (uint64, error) + Params func() map[string]string + SetHeader func(key string, value []byte) RequestContract + SetHeaderString func(key, value string) RequestContract + SetParams func(params map[string]string) + SetUser func(u contracts.User) + Unmarshal func(to interface{}) error + User func() contracts.User + type ResponseContract interface + Content func() []byte + Handled func() bool + Headers func() map[string]string + SetHeader func(key string, value string) ResponseContract + SetStatusCode func(code int) + StatusCode func() int + type TemplateResponseContract interface + Template func() *template.Template + TemplateData func() interface{}