1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env node /** * @buger/probe-chat CLI * Command-line interface for Probe code search chat * * This is a thin wrapper around the main functionality in index.js */ import { main } from '../index.js'; // Execute the main function main();