mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
27f9b326b8
Signed-off-by: Vishal Rana <vr@labstack.com>
15 lines
326 B
Go
15 lines
326 B
Go
package middleware
|
|
|
|
import "github.com/labstack/echo"
|
|
|
|
type (
|
|
// Skipper defines a function to skip middleware. Returning true skips processing
|
|
// the middleware.
|
|
Skipper func(c echo.Context) bool
|
|
)
|
|
|
|
// defaultSkipper returns false which processes the middleware.
|
|
func defaultSkipper(c echo.Context) bool {
|
|
return false
|
|
}
|