mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 07:04:25 +00:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { main } from "./main.js";
|
|
|
|
// Run as CLI - this file should always be executed, not imported
|
|
main(process.argv.slice(2)).catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|