mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08: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
|
|
}
|