diff --git a/doc.go b/doc.go deleted file mode 100644 index b8b8a28..0000000 --- a/doc.go +++ /dev/null @@ -1,33 +0,0 @@ -/* -Package errhttp provides types errors that make dealing with HTTP response errors easier. - -Example - - import "github.com/reiver/go-errhttp" - - // ... - - if err := something(); nil != err { - return errhttp.BadRequestWrap(err) - } - - // ... - - switch err.(type) { - case errhttp.BadRequest: - //@TODO - case errhttp.NotFound: - //@TODO - case errhttp.InternalServerError: - //@TODO - - case errhttp.ClientError: - //@TODO - case errhttp.ServerError: - //@TODO - - default: - //@TODO - } -*/ -package errhttp