diff options
Diffstat (limited to 'src/panic_handler.zig')
-rw-r--r-- | src/panic_handler.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panic_handler.zig b/src/panic_handler.zig index 4e2ca05f9..761c25c3a 100644 --- a/src/panic_handler.zig +++ b/src/panic_handler.zig @@ -1,5 +1,5 @@ const std = @import("std"); -const bun = @import("bun"); +const bun = @import("root").bun; const string = bun.string; const Output = bun.Output; const Global = bun.Global; @@ -11,7 +11,7 @@ const default_allocator = bun.default_allocator; const C = bun.C; const CLI = @import("./cli.zig").Cli; const Features = @import("./analytics/analytics_thread.zig").Features; -const HTTP = @import("bun").HTTP.AsyncHTTP; +const HTTP = @import("root").bun.HTTP.AsyncHTTP; const Report = @import("./report.zig"); pub fn NewPanicHandler(comptime panic_func: fn ([]const u8, ?*std.builtin.StackTrace, ?usize) noreturn) type { |