X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=7c42c4d205682073c4d23c04d7d2a3eff15add97;hb=0b1828224edf798044ef54672ddfc69598cd99a5;hp=9e6761913ca0724cbf5b8ab13d92349e1b1bf7eb;hpb=c27c3eeea356b0692bef2327bb59aa99f9cbad8d;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 9e676191..7c42c4d2 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,10 +1,11 @@ -import 'reflect-metadata'; +// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -import Bootstrap from './charging-station/Bootstrap'; -import chalk from 'chalk'; +import chalk from 'chalk' -Bootstrap.getInstance().start().catch( - (error) => { - console.error(chalk.red(error)); - } -); +import { Bootstrap } from './charging-station/index.js' + +try { + await Bootstrap.getInstance().start() +} catch (error) { + console.error(chalk.red('Startup error: '), error) +}