Re: [go-nuts] Re: Looking for a http router

2017-04-16 Thread Peter Mogensen
On 2017-04-16 19:56, Peter Mogensen wrote: On 2017-04-16 19:52, Dragos Harabor wrote: Take a look at https://github.com/pressly/chi Yeah... I actually took a very long look at it, but AFAICS it doesn't support custom methods. I could of course just use the any-method Handle() call and do t

[go-nuts] Re: Looking for a http router

2017-04-16 Thread Peter Mogensen
On 2017-04-16 19:52, Dragos Harabor wrote: Take a look at https://github.com/pressly/chi Yeah... I actually took a very long look at it, but AFAICS it doesn't support custom methods. I could of course just use the any-method Handle() call and do the method logic in the individual handler, b

[go-nuts] Re: Looking for a http router

2017-04-16 Thread Dragos Harabor
Take a look at https://github.com/pressly/chi On Saturday, April 15, 2017 at 9:29:01 AM UTC-7, Peter Mogensen wrote: > > Hi, > > Having spend quite some time reading up on the available HTTP > router/mux-s I a bit surprised that I couldn't find any which: > > * Just used http.Handler and the Go