Apply go fix -any ./...

This commit is contained in:
Michael Eischer
2026-07-22 22:25:18 +02:00
parent d4088aa09b
commit 32e9869cc8
63 changed files with 197 additions and 197 deletions
+2 -2
View File
@@ -30,11 +30,11 @@ func NewJSONProgress(term ui.Terminal, verbosity uint) ProgressPrinter {
}
}
func (b *jsonProgress) print(status interface{}) {
func (b *jsonProgress) print(status any) {
b.term.Print(ui.ToJSONString(status))
}
func (b *jsonProgress) error(status interface{}) {
func (b *jsonProgress) error(status any) {
b.term.Error(ui.ToJSONString(status))
}