Apply prettier formating
[e-mobility-charging-stations-simulator.git] / src / start.ts
index a3c14ffa44f26c530bef3766d21731f8c76c1622..ebad51ef634a01df62a540b3fe1d8c086813e727 100644 (file)
@@ -3,8 +3,8 @@
 import Bootstrap from './charging-station/Bootstrap';
 import chalk from 'chalk';
 
-Bootstrap.getInstance().start().catch(
-  (error) => {
+Bootstrap.getInstance()
+  .start()
+  .catch((error) => {
     console.error(chalk.red(error));
-  }
-);
+  });