feat: add events for charging station status change
[e-mobility-charging-stations-simulator.git] / src / start.ts
index ee4d336ecd7436ea37dc61f0019db9fb4fa2d175..af569c53e3e46f2e12c694c221b6e1620955111c 100644 (file)
@@ -2,11 +2,10 @@
 
 import chalk from 'chalk';
 
-// import { Bootstrap } from './charging-station';
-import { Bootstrap } from './charging-station/Bootstrap';
+import { Bootstrap } from './charging-station';
 
-Bootstrap.getInstance()
-  .start()
-  .catch((error) => {
-    console.error(chalk.red('Startup error: '), error);
-  });
+try {
+  await Bootstrap.getInstance().start();
+} catch (error) {
+  console.error(chalk.red('Startup error: '), error);
+}