Versions in this module Expand all Collapse all v1 v1.0.1 Jan 19, 2022 v1.0.0 Jan 19, 2022 v0 v0.0.6 Jan 20, 2022 v0.0.5 Jan 20, 2022 Changes in this version + const Accepted + const AlreadyReported + const BadGateway + const BadRequest + const Conflict + const Connect + const Continue + const Created + const Delete + const ExpectationFailed + const FailedDependency + const Forbidden + const Found + const GatewayTimeout + const Get + const Gone + const HTTPVersionNotSupported + const Head + const IMUsed + const InsufficientStorage + const InternalServerError + const LengthRequired + const Locked + const LoopDetected + const MethodNotAllowed + const MovedPermanently + const MultiStatus + const MultipleChoices + const Name + const NetworkAuthenticationRequired + const NoContent + const NonAuthoritativeInfo + const NotAcceptable + const NotExtended + const NotFound + const NotImplemented + const NotModified + const OK + const Options + const PartialContent + const Patch + const PaymentRequired + const PermanentRedirect + const Post + const PreconditionFailed + const PreconditionRequired + const Processing + const ProxyAuthRequired + const Put + const RequestEntityTooLarge + const RequestHeaderFieldsTooLarge + const RequestTimeout + const RequestURITooLong + const RequestedRangeNotSatisfiable + const ResetContent + const SeeOther + const ServiceUnavailable + const SwitchingProtocols + const Teapot + const TemporaryRedirect + const TooManyRequests + const Trace + const Unauthorized + const UnavailableForLegalReasons + const UnprocessableEntity + const UnsupportedMediaType + const UpgradeRequired + const UseProxy + const VariantAlsoNegotiates + const Version + func Custom(server *fasthttp.Server) *gorineeWeb + func GetString(b []byte) string + func InterfaceConvertString(arg interface{}) string + func New() *gorineeWeb + type GorineeWeb interface + Custom func(server *fasthttp.Server) *gorineeWeb + Delete func(path string, handler Handler) + Get func(path string, handler Handler) + Head func(path string, handler Handler) + HealthCheck func() + New func() *gorineeWeb + Post func(path string, handler Handler) + Put func(path string, handler Handler) + Run func(addr string) + type GorineeWebContext struct + func (g *GorineeWebContext) Body() string + func (g *GorineeWebContext) GetCookie(key string) string + func (g *GorineeWebContext) Param(key string) interface{} + func (g *GorineeWebContext) Query(key string) string + func (g *GorineeWebContext) Reply(contentType string, data []byte) + func (g *GorineeWebContext) ReplyJSON(data interface{}) + func (g *GorineeWebContext) SetCookie(key, value string, expireAt time.Time, httpOnly, secure bool) bool + func (g *GorineeWebContext) Status(status STATUS) + type Handler func(*gorineeWebContext) + type METHOD string + type Route struct + Handler Handler + Method METHOD + Path string + type STATUS int + type Settings struct + AutoRecover bool + CaseInSensitive bool + MaxRequestBodySize int + MaxRequestURLLength int + MaxRouteParams int + ServerName string