Fix linting errors.

This commit is contained in:
Mariano Cano 2021-03-22 13:45:20 -07:00
parent 0b8528ce6b
commit ce3e6bfdf6

View file

@ -56,6 +56,7 @@ type ErrNotImplemented struct {
Message string
}
// ErrNotImplemented implements the error interface.
func (e ErrNotImplemented) Error() string {
if e.Message != "" {
return e.Message
@ -65,6 +66,6 @@ func (e ErrNotImplemented) Error() string {
// StatusCode implements the StatusCoder interface and returns the HTTP 501
// error.
func (s ErrNotImplemented) StatusCode() int {
func (e ErrNotImplemented) StatusCode() int {
return http.StatusNotImplemented
}