فهرست منبع

added program end

Pablo Barrera Yaksic 7 ماه پیش
والد
کامیت
828a047744
1فایلهای تغییر یافته به همراه7 افزوده شده و 3 حذف شده
  1. 7 3
      src/index.ts

+ 7 - 3
src/index.ts

@@ -29,6 +29,10 @@ async function main (): Promise<void> {
   await theclinic(null, context, () => {});
 }
 
-main().catch((err) => {
-  console.error(err)
-});
+main()
+  .then(() => {
+    process.exit(0);
+  })
+  .catch((err) => {
+    console.error(err)
+  });