Matt Wielbut
Matt Wielbut
Some OAuth providers do not adhere to the standard of accepting query escaped credentials when using Basic header auth. If your client ID or client secret contains non-standard URL query...
This PR adds some convenience methods to make it easier to convert between pointer and Optional representation of values. Using the Optional package inevitably leads to lots of code like...
It would be incredibly useful if you could do named joins to support multiple joins against one table. Maybe something like: ``` .getJoin({ best_friends: { _table: 'relationships', _apply: function(sequence) {...
The current implementation requires passing in the concrete standard `log.Logger` struct which makes it cumbersome use an alternative logger, such as Logrus. Modl is only using one `Printf` function so...
It would be great if the `logger` on `DbMap` was defined as an interface with the single `Printf` function needed rather than the full std `log.Logger` struct to make it...