Storer is used to permanently store the results.
| 43 | |
| 44 | // Storer is used to permanently store the results. |
| 45 | type Storer interface { |
| 46 | Store(ctx context.Context, repoInfo *preparation.Result, hashType string, bucketNodes []*BucketNode) error |
| 47 | Clean(ctx context.Context, repoInfo *preparation.Result, hashType string) error |
| 48 | } |
| 49 | |
| 50 | // FileResult holds the per file hash and path information. |
| 51 | type FileResult struct { |
no outgoing calls
no test coverage detected