rowboat/apps/cli/src/x.ts

12 lines
277 B
TypeScript
Raw Normal View History

import { startCopilot } from "./application/assistant/chat.js";
2025-11-05 13:28:38 +05:30
export const start = () => {
startCopilot().catch((err) => {
console.error("Failed to run copilot:", err);
process.exitCode = 1;
});
}
// Run the copilot when this file is executed directly
start();