From 1a1b75dec0e6c2bb1bbddf75733542fa3c417677 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 25 Sep 2025 07:34:41 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/bun.js/api/clipboard.zig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;