build(deps-dev): bump eslint-plugin-vue from 9.23.0 to 9.24.0
[e-mobility-charging-stations-simulator.git] / src / start.ts
1 // Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved.
2
3 import chalk from 'chalk'
4
5 import { Bootstrap } from './charging-station/index.js'
6
7 try {
8 await Bootstrap.getInstance().start()
9 } catch (error) {
10 console.error(chalk.red('Startup error: '), error)
11 }