Closed alexandear closed 1 year ago
This PR replaces interface{} with any. Because the project supports Go >= 1.20 this is a safe change.
interface{}
any
any appears in Go 1.18.
In theory we still support Go 1.17. I'm ok if you drop support for that in this pull request. 1.17 hasn't been supported by the official Go team for more than a year already.
This PR replaces
interface{}
withany
. Because the project supports Go >= 1.20 this is a safe change.any
appears in Go 1.18.