From ae4dd4ee08f790949d1fcca62bc8842db5dca2ca Mon Sep 17 00:00:00 2001 From: Claude Bot Date: Tue, 30 Dec 2025 10:14:55 +0000 Subject: [PATCH] Move prompt.zig to api/console/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move prompt.zig from webcore/ to api/console/. Related to console input functionality. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/buntime/{webcore => api/console}/prompt.zig | 0 src/buntime/webcore.zig | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/buntime/{webcore => api/console}/prompt.zig (100%) diff --git a/src/buntime/webcore/prompt.zig b/src/buntime/api/console/prompt.zig similarity index 100% rename from src/buntime/webcore/prompt.zig rename to src/buntime/api/console/prompt.zig diff --git a/src/buntime/webcore.zig b/src/buntime/webcore.zig index 311351bfa7..b46b659962 100644 --- a/src/buntime/webcore.zig +++ b/src/buntime/webcore.zig @@ -2,7 +2,7 @@ comptime { if (bun.Environment.export_cpp_apis) { - _ = &@import("./webcore/prompt.zig"); + _ = &@import("./api/console/prompt.zig"); } _ = &@import("./web/encoding/TextEncoder.zig"); }