mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 11:10:47 -05:00
* bump dependencies Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * bump reva and add config options Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> --------- Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
15 lines
248 B
Go
15 lines
248 B
Go
// Package handler provides http handlers
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Handler represents a HTTP handler that manages a request.
|
|
type Handler interface {
|
|
// standard http handler
|
|
http.Handler
|
|
// name of handler
|
|
String() string
|
|
}
|