var ConfigDefault = Config{ Next: nil, }
ConfigDefault is the default config
func New(config ...Config) fiber.Handler
New creates a new middleware handler
type Config struct { // Next defines a function to skip this middleware when returned true. // // Optional. Default: nil Next func(c *fiber.Ctx) bool }
Config defines the config for middleware.