1
0
2019-05-22 17:48:48 +00:00

14 lines
209 B
Go

package handlers
import (
"net/http"
)
type notImplementedHandler struct {
response *Response
}
func (h notImplementedHandler) Handle() *Response {
return h.response.Set(http.StatusNotImplemented, "")
}