labstack / echo

High performance, minimalist Go web framework
https://echo.labstack.com
MIT License
29.94k stars 2.23k forks source link

format interface{} -> any #2692

Open poteto0 opened 3 weeks ago

poteto0 commented 3 weeks ago

Summary

This PR formats interface{} -> any. any is an alias for interface{}

var any = interface{}

https://github.com/golang/go/blob/67f131485541f362c8e932cd254982a8ad2cfc09/src/builtin/builtin.go#L97

What was changed

Why the change was made

How it was tested

go test ./... -cover