aboutsummaryrefslogtreecommitdiff
path: root/src/resolver/dir_info.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/resolver/dir_info.zig')
-rw-r--r--src/resolver/dir_info.zig24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/resolver/dir_info.zig b/src/resolver/dir_info.zig
index 86a9bc791..c8c54c490 100644
--- a/src/resolver/dir_info.zig
+++ b/src/resolver/dir_info.zig
@@ -1,15 +1,15 @@
-const _global = @import("../global.zig");
-const string = _global.string;
-const Output = _global.Output;
-const Global = _global.Global;
-const Environment = _global.Environment;
-const strings = _global.strings;
-const MutableString = _global.MutableString;
-const stringZ = _global.stringZ;
-const default_allocator = _global.default_allocator;
-const C = _global.C;
-const StoredFileDescriptorType = _global.StoredFileDescriptorType;
-const FeatureFlags = _global.FeatureFlags;
+const bun = @import("../global.zig");
+const string = bun.string;
+const Output = bun.Output;
+const Global = bun.Global;
+const Environment = bun.Environment;
+const strings = bun.strings;
+const MutableString = bun.MutableString;
+const stringZ = bun.stringZ;
+const default_allocator = bun.default_allocator;
+const C = bun.C;
+const StoredFileDescriptorType = bun.StoredFileDescriptorType;
+const FeatureFlags = bun.FeatureFlags;
const allocators = @import("../allocators.zig");
const DirInfo = @This();