chore: replace interface{} with any

This commit is contained in:
Vincent Bernat
2025-07-29 07:37:42 +02:00
parent 10dfefebb4
commit 18beb310ee
61 changed files with 315 additions and 315 deletions

View File

@@ -61,6 +61,6 @@ type cacheLogger struct {
r *reporter.Reporter
}
func (cl cacheLogger) Errorf(msg string, args ...interface{}) {
func (cl cacheLogger) Errorf(msg string, args ...any) {
cl.r.Error().Msgf(msg, args...)
}