func NotFoundHandler(ctx *routing.Context) error { ctx.WriteString("Not Found:" + strconv.Itoa(http.StatusNotFound)) ctx.Response.SetStatusCode(http.StatusNotFound) return routing.NewHTTPError(http.StatusNotFound) }