mirror of
https://github.com/vbatts/srvdav.git
synced 2024-11-28 19:35:39 +00:00
13 lines
212 B
Go
13 lines
212 B
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type notImplementedHandler struct {
|
|
response *Response
|
|
}
|
|
|
|
func (h notImplementedHandler) Handle() *Response {
|
|
return h.response.Set(http.StatusNotImplemented, "")
|
|
}
|