UNPKG

@botpress/adk-cli

Version:

Command-line interface for the Botpress Agent Development Kit (ADK)

9 lines (7 loc) 218 B
// @bun // src/utils/child-process.ts import { exec } from "child_process"; import { promisify } from "util"; import { execSync } from "child_process"; var execAsync = promisify(exec); export { execAsync, execSync };