aboutsummaryrefslogtreecommitdiff
path: root/misctools/machbench.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
commitea47ed0ee5969d31e03c55ba3bc384466615e513 (patch)
treef7e40627a41bfbdb626ed4d9fd2fe9adb26710df /misctools/machbench.zig
parent36f9fd607a238fc029d64cc27a26b203a856cbbd (diff)
downloadbun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip
Fix broken autocomplete
Diffstat (limited to 'misctools/machbench.zig')
-rw-r--r--misctools/machbench.zig10
1 files changed, 5 insertions, 5 deletions
diff --git a/misctools/machbench.zig b/misctools/machbench.zig
index 729ed7be5..5da20b5ba 100644
--- a/misctools/machbench.zig
+++ b/misctools/machbench.zig
@@ -1,6 +1,6 @@
// most of this file is copy pasted from other files in misctools
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,16 +11,16 @@ const stringZ = bun.stringZ;
const default_allocator = bun.default_allocator;
const C = bun.C;
const clap = @import("../src/deps/zig-clap/clap.zig");
-const AsyncIO = @import("bun").AsyncIO;
+const AsyncIO = @import("root").bun.AsyncIO;
const URL = @import("../src/url.zig").URL;
-const Headers = @import("bun").HTTP.Headers;
+const Headers = @import("root").bun.HTTP.Headers;
const Method = @import("../src/http/method.zig").Method;
const ColonListType = @import("../src/cli/colon_list_type.zig").ColonListType;
const HeadersTuple = ColonListType(string, noop_resolver);
const path_handler = @import("../src/resolver/resolve_path.zig");
-const NetworkThread = @import("bun").HTTP.NetworkThread;
-const HTTP = @import("bun").HTTP;
+const NetworkThread = @import("root").bun.HTTP.NetworkThread;
+const HTTP = @import("root").bun.HTTP;
fn noop_resolver(in: string) !string {
return in;
}