27 Star 83 Fork 11

lunny / tango

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
prefix.go 496 Bytes
一键复制 编辑 原始数据 按行查看 历史
lunny 提交于 2017-03-07 21:27 . lint fixed
// Copyright 2015 The Tango Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tango
import (
"strings"
)
// Prefix provides a middleware to wrap another middleware with a prefix URL
// TODO: regex prefix
func Prefix(prefix string, handler Handler) HandlerFunc {
return func(ctx *Context) {
if strings.HasPrefix(ctx.Req().URL.Path, prefix) {
handler.Handle(ctx)
return
}
ctx.Next()
}
}
Go
1
https://gitee.com/lunny/tango.git
git@gitee.com:lunny/tango.git
lunny
tango
tango
master

搜索帮助