DelBlobstore is the interface for a blobstore that can delete blobs.
| 24 | |
| 25 | // DelBlobstore is the interface for a blobstore that can delete blobs. |
| 26 | type DelBlobstore interface { |
| 27 | Delete(node *node.Node) error |
| 28 | } |
| 29 | |
| 30 | // Glob uses globbing to find all revision nodes in a storage provider. |
| 31 | func Glob(pattern string) <-chan string { |
no outgoing calls
no test coverage detected