X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=d5c28b0b01c664c0c77e69c45e23582c02140e21;hb=41523643d78e93517ffecef6f55759342b8050d5;hp=9e6761913ca0724cbf5b8ab13d92349e1b1bf7eb;hpb=c27c3eeea356b0692bef2327bb59aa99f9cbad8d;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 9e676191..d5c28b0b 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,10 +1,11 @@ -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) => { +import Bootstrap from './charging-station/Bootstrap'; + +Bootstrap.getInstance() + .start() + .catch((error) => { console.error(chalk.red(error)); - } -); + });