diff options
author | 2023-01-13 11:27:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:27:16 -0800 | |
commit | 996ef44c021a692403082c70e0eedc2ce1696eff (patch) | |
tree | a2d238991ca017a30ffa01e2cc005f802cbac15f /src/http.zig | |
parent | 734b5b89da07fa074ea1c2a1013f32a56fc58637 (diff) | |
download | bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.gz bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.zst bun-996ef44c021a692403082c70e0eedc2ce1696eff.zip |
Split some things into more files and use bun namespace instead of import more
Diffstat (limited to 'src/http.zig')
-rw-r--r-- | src/http.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.zig b/src/http.zig index 0e11b6803..83666f5b9 100644 --- a/src/http.zig +++ b/src/http.zig @@ -18,7 +18,7 @@ const ApiWriter = @import("./api/schema.zig").Writer; const ByteApiWriter = @import("./api/schema.zig").ByteWriter; const NewApiWriter = @import("./api/schema.zig").Writer; const js_ast = @import("./js_ast.zig"); -const bundler = @import("bundler.zig"); +const bundler = bun.bundler; const logger = @import("bun").logger; const Fs = @import("./fs.zig"); const Options = @import("./options.zig"); |