mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-04 04:42:37 +02:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
|
|
import { ensureBaseDirs } from "./application/assistant/services/storage.js";
|
||
|
|
import { startCopilot } from "./application/assistant/chat.js";
|
||
|
|
|
||
|
|
ensureBaseDirs();
|
||
|
|
|
||
|
|
startCopilot().catch((err) => {
|
||
|
|
console.error("Failed to run copilot:", err);
|
||
|
|
process.exitCode = 1;
|
||
|
|
});
|