use arena_pool for cache get

This commit is contained in:
Muki Kiboigo
2026-03-26 15:54:49 -07:00
parent 81e23fd020
commit 41cf6efe32
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();