mirror of
https://github.com/restic/rest-server.git
synced 2026-04-05 09:42:08 -07:00
14 lines
386 B
Go
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
|
|
}
|