Garrett Ladley
Garrett Ladley
I am also running into this with a [function](https://github.com/GenerateNU/sac/blob/main/backend/utilities/manipulator.go#L8) for a project I'm working on. Maybe this will be handled in [`go-viper/mapstructure`](https://github.com/go-viper/mapstructure)? Will open an issue there
IMO should be handled at the gorm level instead of on a connector by connector level. Opened this [issue](https://github.com/go-gorm/gorm/issues/6827) in gorm
also, does anyone know how to fix the CI/build step? running into the following error: `generator/generator.go:20:2: cannot find module providing package github.com/tdewolff/minify/v2: import lookup disabled by -mod=vendor`
my naive solution would be to add a field to `Config` ```go type Config struct { // ... WithResponseBodyLen bool // ... } ``` it would default to `true` in...