Replace interface{} with any
All checks were successful
Release / release (push) Successful in 1m8s

This commit is contained in:
2026-03-26 17:36:47 +01:00
parent 788c8712ba
commit 11969e8f46
2 changed files with 5 additions and 5 deletions

View File

@@ -264,7 +264,7 @@ Debug output goes to stderr (kubectl surfaces this to the terminal):
server += ":8443"
}
logf := func(format string, a ...interface{}) {
logf := func(format string, a ...any) {
if debugFlag {
fmt.Fprintf(os.Stderr, "[ward] "+format+"\n", a...)
}