Improve error information at OCPP incoming message handling
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 9e6761913ca0724cbf5b8ab13d92349e1b1bf7eb..ebad51ef634a01df62a540b3fe1d8c086813e727 100644 (file)
@@ -1,10 +1,10 @@
-import 'reflect-metadata';
+// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
 
 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));
-  }
-);
+  });