README.md: fix a configuration type definition
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 596f0275e8335a9c36e0dc29cb31dff5539cc4fb..ebad51ef634a01df62a540b3fe1d8c086813e727 100644 (file)
@@ -1,8 +1,10 @@
+// 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));
-  }
-);
+  });