# Functions
AddTrailingSlash returns a root level (before router) middleware which adds a trailing slash to the request `URL#Path`.
AddTrailingSlashWithConfig returns a AddTrailingSlash middleware from config.
BasicAuth returns an HTTP basic auth middleware.
BasicAuthWithConfig returns an HTTP basic auth middleware from config.
BodyLimit returns a body limit middleware.
BodyLimitWithConfig returns a body limit middleware from config.
CORS returns a Cross-Origin Resource Sharing (CORS) middleware.
CORSWithConfig returns a CORS middleware from config.
CSRF returns a Cross-Site Request Forgery (CSRF) middleware.
CSRFWithConfig returns a CSRF middleware from config.
Gzip returns a middleware which compresses HTTP response using gzip compression scheme.
GzipWithConfig return gzip middleware from config.
JWT returns a JSON Web Token (JWT) auth middleware.
JWTWithConfig returns a JWT auth middleware from config.
Logger returns a middleware that logs HTTP requests.
LoggerWithConfig returns a logger middleware from config.
MethodFromForm is a `MethodOverrideGetter` that gets overridden method from the form parameter.
MethodFromHeader is a `MethodOverrideGetter` that gets overridden method from the request header.
MethodFromQuery is a `MethodOverrideGetter` that gets overridden method from the query parameter.
MethodOverride returns a method override middleware.
MethodOverrideWithConfig returns a method override middleware from config.
Recover returns a middleware which recovers from panics anywhere in the chain and handles the control to the centralized HTTPErrorHandler.
RecoverWithConfig returns a recover middleware from config.
RemoveTrailingSlash returns a root level (before router) middleware which removes a trailing slash from the request URI.
RemoveTrailingSlashWithConfig returns a RemoveTrailingSlash middleware from config.
Secure returns a secure middleware.
SecureWithConfig returns a secure middleware from config.
Static returns a static middleware to serves static content from the provided root directory.
StaticWithConfig returns a static middleware from config.
# Constants
Algorithims.
# Variables
DefaultCORSConfig is the default CORS middleware config.
DefaultCSRFConfig is the default CSRF middleware config.
DefaultGzipConfig is the default gzip middleware config.
DefaultJWTConfig is the default JWT auth middleware config.
DefaultLoggerConfig is the default logger middleware config.
DefaultMethodOverrideConfig is the default method override middleware config.
DefaultRecoverConfig is the default recover middleware config.
DefaultSecureConfig is the default secure middleware config.
DefaultStaticConfig is the default static middleware config.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
No description provided by the author
No description provided by the author