move datastructures to dedicated "datastruct" package

This commit is contained in:
Mitchell Hashimoto
2024-11-07 14:38:54 -08:00
parent aed51fd0b0
commit a436bd0af6
18 changed files with 29 additions and 21 deletions

View File

@@ -20,7 +20,7 @@ const shell_integration = @import("shell_integration.zig");
const terminal = @import("../terminal/main.zig");
const termio = @import("../termio.zig");
const Command = @import("../Command.zig");
const SegmentedPool = @import("../segmented_pool.zig").SegmentedPool;
const SegmentedPool = @import("../datastruct/main.zig").SegmentedPool;
const ptypkg = @import("../pty.zig");
const Pty = ptypkg.Pty;
const EnvMap = std.process.EnvMap;