(suffix string)
| 103 | } |
| 104 | |
| 105 | func (node *CacheNode) filePath(suffix string) string { |
| 106 | return filepath.Join(node.dir, fmt.Sprintf("%s.%s", node.source.CacheKey(), suffix)) |
| 107 | } |
| 108 | |
| 109 | func checksum(b []byte) string { |
| 110 | h := sha256.New() |
no test coverage detected