mirror of
https://github.com/restic/rest-server.git
synced 2026-03-30 23:03:18 -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
|
|
}
|