diff options
author | 2023-01-13 11:38:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:38:16 -0800 | |
commit | 168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch) | |
tree | be48052eca10da6c2cfcd49fbb66055c65bf6619 /src/bun.js/api/server.zig | |
parent | 996ef44c021a692403082c70e0eedc2ce1696eff (diff) | |
download | bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip |
move more things
Diffstat (limited to 'src/bun.js/api/server.zig')
-rw-r--r-- | src/bun.js/api/server.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bun.js/api/server.zig b/src/bun.js/api/server.zig index 7821f795c..d99d7c9be 100644 --- a/src/bun.js/api/server.zig +++ b/src/bun.js/api/server.zig @@ -21,9 +21,9 @@ const Api = @import("../../api/schema.zig").Api; const options = @import("../../options.zig"); const Bundler = bun.Bundler; const ServerEntryPoint = bun.bundler.ServerEntryPoint; -const js_printer = @import("../../js_printer.zig"); -const js_parser = @import("../../js_parser.zig"); -const js_ast = @import("../../js_ast.zig"); +const js_printer = bun.js_printer; +const js_parser = bun.js_parser; +const js_ast = bun.JSAst; const http = @import("../../http.zig"); const NodeFallbackModules = @import("../../node_fallbacks.zig"); const ImportKind = ast.ImportKind; |