hi019
hi019
Here's how I load translations from an embed: ```go func (s *Service) AddLocale(fs embed.FS, tag language.Tag) error { l := gotext.NewLocale("", tag.String()) b, err := fs.ReadFile(fmt.Sprintf("assets/locales/%s/default.po", tag.String())) if err !=...
Dependabot should be handling this. I'll look into it later this week or this weekend.
I think this is a good addition. It allows for graceful shutdown by default -- could be useful for things like closing DB connections or removing temporary files, which would...
I'll look at this later today
Thanks for the PR! There are quiet a few breaking changes here, so we'll need to release a new major version of the postgres implementation.
Thanks for all the work you've done here. If we're going to release a new major version, what would you think of rewriting the config to just accept a pgx...
Yeah, we should remove the config keys that correspond to the connection configuration.
But before you make changes, @ReneWerner87 what do you think of the idea?
@Technerder Yes, panicking should be fine here
One more thing, can you put the new code in a v2 folder (so the path will be `postgres/v2/`)? That way we can issue a new major version with a...