diff options
Diffstat (limited to 'src/blob.zig')
-rw-r--r-- | src/blob.zig | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/blob.zig b/src/blob.zig index b914c45a9..092abf46b 100644 --- a/src/blob.zig +++ b/src/blob.zig @@ -1,15 +1,15 @@ const std = @import("std"); const Lock = @import("./lock.zig").Lock; -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 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 Blob = @This(); |