import * as appStore from "../../../../apps/app-store.js"; import { executeAppDelete } from "../../../../tools/apps/executors.js"; import type { ToolContext, ToolExecutionResult, } from "../../../../tools/types.js"; export async function run( input: Record, _context: ToolContext, ): Promise { return executeAppDelete({ app_id: input.app_id as string }, appStore); }