5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 16:02:31 +00:00
matterbridge/vendor/github.com/labstack/echo/middleware/middleware.go

15 lines
324 B
Go
Raw Normal View History

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