8 lines
405 B
JavaScript
8 lines
405 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.executeTool = exports.ALL_TOOLS = void 0;
|
|
const mcp_client_1 = require("./mcp-client");
|
|
Object.defineProperty(exports, "ALL_TOOLS", { enumerable: true, get: function () { return mcp_client_1.ALL_TOOLS; } });
|
|
// Legacy exports to satisfy imports in agent-runner
|
|
exports.executeTool = require('./mcp-client').executeTool;
|