diff options
author | 2023-04-19 00:01:27 -0700 | |
---|---|---|
committer | 2023-04-19 00:01:27 -0700 | |
commit | ea47ed0ee5969d31e03c55ba3bc384466615e513 (patch) | |
tree | f7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/http/websocket.zig | |
parent | 36f9fd607a238fc029d64cc27a26b203a856cbbd (diff) | |
download | bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip |
Fix broken autocomplete
Diffstat (limited to 'src/http/websocket.zig')
-rw-r--r-- | src/http/websocket.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/websocket.zig b/src/http/websocket.zig index 8bc101abb..98410d57c 100644 --- a/src/http/websocket.zig +++ b/src/http/websocket.zig @@ -4,7 +4,7 @@ const std = @import("std"); const native_endian = @import("builtin").target.cpu.arch.endian(); const os = std.os; -const bun = @import("bun"); +const bun = @import("root").bun; const string = bun.string; const Output = bun.Output; const Global = bun.Global; |