#35 bumps the Go version we use in CI to 1.20, so we can migrate the codebase to use some Go generics features.
The obvious change would be to drop interface{} in favor of any, but it's also worth looking into whether the pointer logic in SQL.Query() could be simplified with some generic type.
#35 bumps the Go version we use in CI to 1.20, so we can migrate the codebase to use some Go generics features.
The obvious change would be to drop
interface{}in favor ofany, but it's also worth looking into whether the pointer logic inSQL.Query()could be simplified with some generic type.