chore: move web_worker.zig to web/workers/

Web Worker functionality belongs with the workers directory.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Bot
2025-12-30 11:32:25 +00:00
parent 1f47e3fd00
commit e4a2d75e4a
2 changed files with 2 additions and 2 deletions

View File

@@ -642,7 +642,7 @@ comptime {
}
const std = @import("std");
const WTFStringImpl = @import("../string.zig").WTFStringImpl;
const WTFStringImpl = @import("../../../string.zig").WTFStringImpl;
const bun = @import("bun");
const Async = bun.Async;

View File

@@ -14,7 +14,7 @@ pub const ByteListPool = bun.ObjectPool(bun.ByteList, null, true, 8);
pub const Crypto = @import("./webcore/webcrypto/Crypto.zig");
pub const AbortSignal = @import("./web/events/AbortSignal.zig").AbortSignal;
pub const WebWorker = @import("./web_worker.zig");
pub const WebWorker = @import("./web/workers/web_worker.zig");
pub const AutoFlusher = @import("./webcore/AutoFlusher.zig");
pub const EncodingLabel = @import("./web/encoding/EncodingLabel.zig").EncodingLabel;
pub const Fetch = @import("./web/fetch/fetch.zig");