remove unused cache method on fs cache

This commit is contained in:
Muki Kiboigo
2026-03-26 18:41:40 -07:00
parent 2228ad93d5
commit e91b978a99

View File

@@ -93,10 +93,6 @@ pub fn deinit(self: *FsCache) void {
self.dir.close();
}
pub fn cache(self: *FsCache) Cache {
return Cache.init(self);
}
pub fn get(self: *FsCache, arena: std.mem.Allocator, req: CacheRequest) ?Cache.CachedResponse {
const hashed_key = hashKey(req.url);
const meta_p = metaPath(&hashed_key);