1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-30 00:00:14 +01:00
restic/internal/ui/restore/progress_unix.go
2024-12-03 18:00:14 +05:30

15 lines
311 B
Go

//go:build !windows
// +build !windows
package restore
import (
"encoding/json"
"github.com/restic/restic/internal/restic"
)
// incrementFilesFinished increments the files finished count
func (p *Progress) incrementFilesFinished(_ map[restic.GenericAttributeType]json.RawMessage) {
p.s.FilesFinished++
}