Open poteto0 opened 3 weeks ago
This PR formats interface{} -> any. any is an alias for interface{}
interface{}
any
var any = interface{}
https://github.com/golang/go/blob/67f131485541f362c8e932cd254982a8ad2cfc09/src/builtin/builtin.go#L97
go >= 1.18
go test ./... -cover
Summary
This PR formats
interface{}
->any
.any
is an alias forinterface{}
https://github.com/golang/go/blob/67f131485541f362c8e932cd254982a8ad2cfc09/src/builtin/builtin.go#L97
What was changed
interface{}
->any
go >= 1.18
Why the change was made
any
is easier than an empty interface literal.How it was tested