diff --git a/src/bun.js/api/clipboard.zig b/src/bun.js/api/clipboard.zig index 364f40577f..e0f69dfebe 100644 --- a/src/bun.js/api/clipboard.zig +++ b/src/bun.js/api/clipboard.zig @@ -157,11 +157,14 @@ fn readTextLinux(allocator: std.mem.Allocator) ![]u8 { } // Imports at the bottom (Zig style in Bun codebase) + const std = @import("std"); + const bun = @import("bun"); const Environment = bun.Environment; const JSError = bun.JSError; + const jsc = bun.jsc; const JSGlobalObject = jsc.JSGlobalObject; const JSValue = jsc.JSValue; -const ZigString = jsc.ZigString; \ No newline at end of file +const ZigString = jsc.ZigString;