George Dunlap
George Dunlap
Well, that was easy. Adding: ```golang func (c *SQLiteConn) Raw(cb func(raw unsafe.Pointer) error) error { return cb(unsafe.Pointer(c.db)) } ``` Seems to do the trick. The hardest part was that due...
@rittneje Just making sure I understand your error-handling code. The idea is that the callback can return their own error type, and that's fine, it will be passed through; but...
I appreciate you taking the time to maintain a tool that I use every day. :-)
Any chance we can get this merged? I just spent several hours trying to figure out why my query was only getting a single result, only to find the extra...
BTW, the following works for all tests: ```golang type VersionSlice struct { Range []VersionSingle `parser:"@@ ( VersionDash @@ )*"` } ... pVersionSlice := participle.MustBuild[VersionSlice](participle.Lexer(lexProject)) t.Log("Testing pVersionSlice with simple and range")...
@jain-raunak Any chance you could take a look at this? Basic transactional email functionality is broken without this change.
@llstarscreamll BTW by digging into the code I discovered that it actually returns an error of type `brevo.GenericSwaggerError`; you can get the body of the response from the `Body()` method...
FYI I switched to postmarkapp.com as a result of this. The golang package is maintained by someone in the community, but actually is maintained, unlike this package.
Great! I'll add it to my backlog. It may take a few months to get to.
Low priority for sure. I wouldn't mind sending you a PR if I had an idea the approach you wanted to take -- whether to change the function signature of...