Open hsdk123 opened 9 years ago
"github.com/codegangsta/martini-contrib/render" is deprecated
Just call m.Use(render.Renderer())
I can confirm that using m.Use(render.Renderer()
fixed the above issue.
I can confirm too, m.Use(render.Renderer())
works.
@yesnault You make my day
I get the error "Value not found for type render.Render" if I import using "github.com/martini-contrib/render", while I don't get it upon using "github.com/codegangsta/martini-contrib/render"
I notice that the files in "github.com/codegangsta/martini-contrib/render" are rather old (not having render.Header(), etc.) and hence I want to use the files from this repository, but I'm getting the error upon using the files here.