()
| 99 | } |
| 100 | |
| 101 | func (node *CacheNode) timestampPath() string { |
| 102 | return node.filePath("timestamp") |
| 103 | } |
| 104 | |
| 105 | func (node *CacheNode) filePath(suffix string) string { |
| 106 | return filepath.Join(node.dir, fmt.Sprintf("%s.%s", node.source.CacheKey(), suffix)) |
no test coverage detected