12acc3eb1477a1d0901deef7d90edda54795ec40
[e-mobility-charging-stations-simulator.git] / start.ts
1 // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
2
3 import chalk from 'chalk';
4
5 import { Bootstrap } from './charging-station';
6
7 Bootstrap.getInstance()
8 .start()
9 .catch((error) => {
10 console.error(chalk.red('Startup error: '), error);
11 });