aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/base.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-29 02:42:56 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-29 02:42:56 -0800
commitb631ea7d725a42954c577ea686ae711ef04f63e1 (patch)
tree37852a650a0ec02fd6042919dc476c7dab550529 /src/bun.js/base.zig
parent7b59d9d97c4d4543d8fe2a2222781d7b89539fc2 (diff)
downloadbun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.gz
bun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.zst
bun-b631ea7d725a42954c577ea686ae711ef04f63e1.zip
import everything from "bun" where possible
Diffstat (limited to 'src/bun.js/base.zig')
-rw-r--r--src/bun.js/base.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bun.js/base.zig b/src/bun.js/base.zig
index 87ace2c54..6ca9e1084 100644
--- a/src/bun.js/base.zig
+++ b/src/bun.js/base.zig
@@ -1,6 +1,6 @@
-pub const js = @import("../jsc.zig").C;
+pub const js = @import("bun").JSC.C;
const std = @import("std");
-const bun = @import("../global.zig");
+const bun = @import("bun");
const string = bun.string;
const Output = bun.Output;
const Global = bun.Global;
@@ -13,7 +13,7 @@ const C = bun.C;
const JavaScript = @import("./javascript.zig");
const ResolveError = JavaScript.ResolveError;
const BuildError = JavaScript.BuildError;
-const JSC = @import("../jsc.zig");
+const JSC = @import("bun").JSC;
const WebCore = @import("./webcore.zig");
const Test = @import("./test/jest.zig");
const Fetch = WebCore.Fetch;
@@ -22,7 +22,7 @@ const Request = WebCore.Request;
const Router = @import("./api/filesystem_router.zig");
const FetchEvent = WebCore.FetchEvent;
const IdentityContext = @import("../identity_context.zig").IdentityContext;
-const uws = @import("uws");
+const uws = @import("bun").uws;
const Body = WebCore.Body;
const TaggedPointerTypes = @import("../tagged_pointer.zig");
const TaggedPointerUnion = TaggedPointerTypes.TaggedPointerUnion;