Improve OCPP error handling, fix performance storage default file path
[e-mobility-charging-stations-simulator.git] / src / start.ts
1 import Bootstrap from './charging-station/Bootstrap';
2 import chalk from 'chalk';
3
4 Bootstrap.getInstance().start().catch(
5 (error) => {
6 console.error(chalk.red(error));
7 }
8 );