aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/module_loader.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-22 02:13:03 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-22 02:13:03 -0800
commitd21aee514375e12335c61936ae302cd67f1f73bf (patch)
treee4985c55d27f7d1bcb7c8fa56441bd4711e15433 /src/bun.js/module_loader.zig
parent65a56c2560a1ef7b036995a8eade45236f76f819 (diff)
downloadbun-d21aee514375e12335c61936ae302cd67f1f73bf.tar.gz
bun-d21aee514375e12335c61936ae302cd67f1f73bf.tar.zst
bun-d21aee514375e12335c61936ae302cd67f1f73bf.zip
Introduce `Bun.FileSystemRouter` API
Diffstat (limited to 'src/bun.js/module_loader.zig')
-rw-r--r--src/bun.js/module_loader.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/module_loader.zig b/src/bun.js/module_loader.zig
index 290f3bf85..f991a9e30 100644
--- a/src/bun.js/module_loader.zig
+++ b/src/bun.js/module_loader.zig
@@ -40,7 +40,7 @@ const ImportKind = ast.ImportKind;
const Analytics = @import("../analytics/analytics_thread.zig");
const ZigString = @import("../jsc.zig").ZigString;
const Runtime = @import("../runtime.zig");
-const Router = @import("./api/router.zig");
+const Router = @import("./api/filesystem_router.zig");
const ImportRecord = ast.ImportRecord;
const DotEnv = @import("../env_loader.zig");
const PackageJSON = @import("../resolver/package_json.zig").PackageJSON;