Files
rest-server/vendor/goji.io/pattern.go
Alexander Neumann 6054876201 Vendor dependencies
2016-12-30 18:34:37 +01:00

14 lines
386 B
Go

package goji
// httpMethods is an internal interface for the HTTPMethods pattern
// optimization. See the documentation on Pattern for more.
type httpMethods interface {
HTTPMethods() map[string]struct{}
}
// pathPrefix is an internal interface for the PathPrefix pattern optimization.
// See the documentation on Pattern for more.
type pathPrefix interface {
PathPrefix() string
}