X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=ebad51ef634a01df62a540b3fe1d8c086813e727;hb=67eb544324cd655b9dca3cfd9fa854789d7c5924;hp=a3c14ffa44f26c530bef3766d21731f8c76c1622;hpb=b4d3425171fa4e08c00e84f129b0c1edd2fb9585;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index a3c14ffa..ebad51ef 100644 --- a/src/start.ts +++ b/src/start.ts @@ -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)); - } -); + });