Results 9 comments of Andrew Pillar

If the second handler being called is only ever going to be called from another handler, then why is it a handler in the first place? If my understanding is...

>Assume it's as a service with a lot of routes and the service also has the "God route" which could allow access to any route avoiding auth procedure in middleware...

Thanks for the PR, I feel that the main thing blocking the use of this as a library is not being able to pass through a preexisting database connection, as...

>To my mind it makes sense for each database implementation to handle mapping the config object to the DSN. Personally if this is going to be a library then I...

I've found that Go modules tend to not work all to well when it comes to the whole mono-repo approach that was encouraged by the use of `$GOPATH`. Go modules...

Yeah, I think the approach I'll be taking for now is alternating between using `replace` and tagging necessary versions as I go along.

@tiramiseb one problem I've encountered is that unless I put the `replace [package] => ../../` in the `go.mod` file I won't be able to build with the latest changes I've...

Not currently, see this thread here from the Go issue tracker: https://github.com/golang/go/issues/16100

It would perhaps be best to keep the React source in a separate file for component rendering. But other than that if you're mixing all of your component script files...