mirror of
https://github.com/restic/restic.git
synced 2025-03-30 00:00:14 +01:00
15 lines
311 B
Go
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++
|
|
}
|