/* Put returns a Pat route that only matches the PUT HTTP method. */ func Put(pat string) goji.Pattern { return pattern.WithMethods(New(pat), "PUT") }
/* Patch returns a Pat route that only matches the PATCH HTTP method. */ func Patch(pat string) goji.Pattern { return pattern.WithMethods(New(pat), "PATCH") }
/* Options returns a Pat route that only matches the OPTIONS HTTP method. */ func Options(pat string) goji.Pattern { return pattern.WithMethods(New(pat), "OPTIONS") }
/* Head returns a Pat route that only matches the HEAD HTTP method. */ func Head(pat string) goji.Pattern { return pattern.WithMethods(New(pat), "HEAD") }
/* 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") }
/* Delete returns a Pat route that only matches the DELETE HTTP method. */ func Delete(pat string) goji.Pattern { return pattern.WithMethods(New(pat), "DELETE") }