ripple-api/app/v1/404.go

23 lines
505 B
Go
Raw Normal View History

2016-04-03 17:59:27 +00:00
package v1
import (
"github.com/gin-gonic/gin"
"github.com/osuripple/api/common"
)
2016-04-16 16:05:24 +00:00
type response404 struct {
common.ResponseBase
Cats string `json:"cats"`
}
2016-04-03 17:59:27 +00:00
// Handle404 handles requests with no implemented handlers.
func Handle404(c *gin.Context) {
2016-04-16 16:05:24 +00:00
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!",
},
Cats: surpriseMe(),
2016-04-03 17:59:27 +00:00
})
}