You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#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.
The text was updated successfully, but these errors were encountered:
#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.The text was updated successfully, but these errors were encountered: