You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I write some code like this is handler:
//go code
return c.Render(200, "taxonomies/show", map[string]interface{}{
"taxonomy": taxonomy,
})
And, this renderer function like this:
func (r *renderer) Render(w io.Writer, name string, data interface{}) error {
.....
return errors.New("some error")
}