2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-30 07:30:50 +00:00
restic/src/restic/find.go

13 lines
264 B
Go
Raw Normal View History

2016-08-01 16:31:44 +00:00
package restic
import (
"restic/backend"
"restic/repository"
)
// FindUsedBlobs traverses the tree ID and returns a set of all blobs
// encountered.
func FindUsedBlobs(repo *repository.Repository, treeID backend.ID) (backend.IDSet, error) {
return nil, nil
}