示例#1
0
文件: methods.go 项目: metcalf/goji
/*
Put returns a Pat route that only matches the PUT HTTP method.
*/
func Put(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "PUT")
}
示例#2
0
文件: methods.go 项目: metcalf/goji
/*
Patch returns a Pat route that only matches the PATCH HTTP method.
*/
func Patch(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "PATCH")
}
示例#3
0
文件: methods.go 项目: metcalf/goji
/*
Options returns a Pat route that only matches the OPTIONS HTTP method.
*/
func Options(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "OPTIONS")
}
示例#4
0
文件: methods.go 项目: metcalf/goji
/*
Head returns a Pat route that only matches the HEAD HTTP method.
*/
func Head(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "HEAD")
}
示例#5
0
文件: methods.go 项目: metcalf/goji
/*
Get returns a Pat route that only matches the GET and HEAD HTTP method. HEAD
requests are handled transparently by net/http.
*/
func Get(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "GET", "HEAD")
}
示例#6
0
文件: methods.go 项目: metcalf/goji
/*
Delete returns a Pat route that only matches the DELETE HTTP method.
*/
func Delete(pat string) goji.Pattern {
	return pattern.WithMethods(New(pat), "DELETE")
}