mirror of
https://github.com/restic/restic.git
synced 2026-09-20 19:18:31 +00:00
Apply go fix -any ./...
This commit is contained in:
@@ -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))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user