Fix Robots deinit

This commit is contained in:
Nikolay Govorov
2026-03-10 23:28:40 +00:00
parent 2b0c223425
commit 24cc24ed50

View File

@@ -104,6 +104,8 @@ pub fn deinit(self: *Runtime) void {
self.allocator.free(data[0..ca_blob.len]); self.allocator.free(data[0..ca_blob.len]);
} }
self.robot_store.deinit();
globalDeinit(); globalDeinit();
} }