From 918d59207400a5773e0f055cc534d853a3defae4 Mon Sep 17 00:00:00 2001 From: cosmosdasw3 Date: Thu, 13 Aug 2026 09:49:48 -0800 Subject: [PATCH] Create bg.js --- src/cli/bg.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/cli/bg.js diff --git a/src/cli/bg.js b/src/cli/bg.js new file mode 100644 index 000000000..2f140d582 --- /dev/null +++ b/src/cli/bg.js @@ -0,0 +1,22 @@ +// Minimal shim for background session handlers when full implementation is omitted. +export async function psHandler(args = []) { + throw new Error('Background session `ps` is not available in this build.'); +} + +export async function logsHandler(id) { + throw new Error('Background session `logs` is not available in this build.'); +} + +export async function attachHandler(id) { + throw new Error('Background session `attach` is not available in this build.'); +} + +export async function killHandler(id) { + throw new Error('Background session `kill` is not available in this build.'); +} + +export async function handleBgFlag(args = []) { + throw new Error('Background flag handling is not available in this build.'); +} + +export default { psHandler, logsHandler, attachHandler, killHandler, handleBgFlag };