mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 17:06:23 +02:00
11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { startCopilot } from "./application/assistant/chat.js";
|
|
|
|
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();
|