feat: add events for charging station status change
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 596f0275e8335a9c36e0dc29cb31dff5539cc4fb..af569c53e3e46f2e12c694c221b6e1620955111c 100644 (file)
@@ -1,8 +1,11 @@
-import Bootstrap from './charging-station/Bootstrap';
+// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
+
 import chalk from 'chalk';
 
-Bootstrap.getInstance().start().catch(
-  (error) => {
-    console.error(chalk.red(error));
-  }
-);
+import { Bootstrap } from './charging-station';
+
+try {
+  await Bootstrap.getInstance().start();
+} catch (error) {
+  console.error(chalk.red('Startup error: '), error);
+}