1 Star 0 Fork 0

sydeEvans / echo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
middleware.go 324 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vishal Rana 提交于 2017-02-19 13:02 . Updated docs
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(echo.Context) bool {
return false
}
1
https://gitee.com/sydeEvans/echo.git
git@gitee.com:sydeEvans/echo.git
sydeEvans
echo
echo
v3.2.1

搜索帮助