api/vendor/github.com/samedi/caldav-go/handlers/not_implemented.go

14 lines
209 B
Go
Raw Normal View History

2019-05-22 17:48:48 +00:00
package handlers
import (
"net/http"
)
type notImplementedHandler struct {
response *Response
}
func (h notImplementedHandler) Handle() *Response {
return h.response.Set(http.StatusNotImplemented, "")
}