diff options
Diffstat (limited to 'src/cli/shell_completions.zig')
-rw-r--r-- | src/cli/shell_completions.zig | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/cli/shell_completions.zig b/src/cli/shell_completions.zig index 10269de11..30d987da0 100644 --- a/src/cli/shell_completions.zig +++ b/src/cli/shell_completions.zig @@ -1,14 +1,14 @@ const std = @import("std"); -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; pub const Shell = enum { unknown, |