matterbridge/vendor/github.com/labstack/echo/middleware/middleware.go

15 lines
324 B
Go
Raw Normal View History

2017-02-18 23:00:46 +01:00
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.
2017-06-06 00:01:05 +02:00
func DefaultSkipper(echo.Context) bool {
2017-02-18 23:00:46 +01:00
return false
}