use arena_pool for cache get

This commit is contained in:
Muki Kiboigo
2026-03-26 15:54:49 -07:00
parent fa01f36f96
commit 87b771f4b0
4 changed files with 13 additions and 21 deletions

View File

@@ -55,7 +55,7 @@ pub fn init(allocator: Allocator, config: *const Config) !*App {
.arena_pool = undefined,
};
app.network = try Network.init(allocator, config);
app.network = try Network.init(allocator, app, config);
errdefer app.network.deinit();
app.platform = try Platform.init();