just-bash-mcp / src /worker /bootstrap.mjs
victor's picture
victor HF Staff
Initial deploy of just-bash MCP server
548a458 verified
raw
history blame contribute delete
259 Bytes
// Bootstrap loader for the session worker in dev (tsx) mode.
// Uses tsx's register API to enable TypeScript in this worker thread, then
// loads the TypeScript entry.
import { register } from "tsx/esm/api";
register();
await import("./sessionWorker.ts");