🔗 index.ts

This commit is contained in:
nirholas
2026-03-31 10:22:52 +00:00
parent 741a376f2d
commit 102d1f9058

View File

@@ -22,12 +22,6 @@ main().catch((err) => {
console.error("Fatal error:", err);
process.exit(1);
});
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
async function dirExists(p: string): Promise<boolean> {
try {
return (await fs.stat(p)).isDirectory();
} catch {
@@ -984,3 +978,4 @@ main().catch((err) => {
process.exit(1);
});