Antoine Imbert

Results 23 comments of Antoine Imbert

Another run on my MacBook Air https://gist.github.com/ant0ine/3caede217dda281dcedb It would be cool the update the README, things have changed since last June.

I'm curious about this too. A few thoughts: 1) Having all the routes defined at the same place is usually much easier to read and understand. I have a few...

Hi @gsparx ! Thanks for your bug report! And sorry for my extremely slow response. I didn't have much time for this project in a past few months. I'm not...

Hi, The return value of api.MakeHandler() is a net/http Handler. Have you tried to give that value to gorelic's agent.WrapHTTPHandler ?

Thanks for the feedback! Swagger is definitely interesting, I've discussed this with a few other people, and that would be a nice improvement. That been said, I think it should...

Swagger2.0 is being renamed Open API Initiative (https://openapis.org/). And @casualjim the author of go-swagger has started go-openapi https://github.com/go-openapi This is very interesting because the implementation is now broken down in...

Hi! Thanks for your Pull Request! And sorry for my very slow response. Do you have any reference to this bug I could add in comment ? Is it the...

Yes, on top of go-json-rest stack of middlewares must be an `App`. Which does not have to be the default router. Anything satisfying the `App` interface will do. It should...

What would be the benefit over type assertions (eg: .(int)) ? This is the same amount of typing, and type assertions seem more Go-ish.