remove unused cache method on fs cache

This commit is contained in:
Muki Kiboigo
2026-03-26 18:41:40 -07:00
parent cedc894445
commit 77e9f5caf7

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);