Refactor: separate entrypoint and main,

Fix: readlng binary file
This commit is contained in:
vorotamoroz
2026-03-12 19:41:10 +09:00
parent d4aedf59f3
commit 822d957976
8 changed files with 95 additions and 37 deletions

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env node
import { main } from "./main";
main().catch((error) => {
console.error(`[Fatal Error]`, error);
process.exit(1);
});