diff --git a/app/v1/404.go b/app/v1/404.go index f9547ff..eadbf00 100644 --- a/app/v1/404.go +++ b/app/v1/404.go @@ -14,8 +14,7 @@ type response404 struct { func Handle404(c *gin.Context) { c.IndentedJSON(404, response404{ ResponseBase: common.ResponseBase{ - Code: 404, - Message: "Oh dear... that API request could not be found! Perhaps the API is not up-to-date? Either way, have a surprise!", + Code: 404, }, Cats: surpriseMe(), })