diff options
author | 2022-03-17 01:27:35 -0700 | |
---|---|---|
committer | 2022-03-17 01:27:35 -0700 | |
commit | 74f4c8bcab092d97628e996dc89c81f76114ba37 (patch) | |
tree | a66df0d8517d167b2642d06ecff1d2a5cf63bd69 /src/linker.zig | |
parent | 89fb624c5be2ac64a01570fff106f7f5e386473a (diff) | |
download | bun-74f4c8bcab092d97628e996dc89c81f76114ba37.tar.gz bun-74f4c8bcab092d97628e996dc89c81f76114ba37.tar.zst bun-74f4c8bcab092d97628e996dc89c81f76114ba37.zip |
query_string_map -> url
Diffstat (limited to 'src/linker.zig')
-rw-r--r-- | src/linker.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linker.zig b/src/linker.zig index 3927425f4..129070e9d 100644 --- a/src/linker.zig +++ b/src/linker.zig @@ -35,7 +35,7 @@ const Bundler = _bundler.Bundler; const ResolveQueue = _bundler.ResolveQueue; const ResolverType = Resolver.Resolver; const Runtime = @import("./runtime.zig").Runtime; -const URL = @import("query_string_map.zig").URL; +const URL = @import("url.zig").URL; pub const CSSResolveError = error{ResolveError}; pub const OnImportCallback = fn (resolve_result: *const Resolver.Result, import_record: *ImportRecord, origin: URL) void; |