1
0
Fork 0
mirror of https://github.com/vbatts/srvdav.git synced 2024-11-28 19:35:39 +00:00
srvdav/vendor/github.com/samedi/caldav-go/handlers/not_implemented.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, "")
}