refactor: revert internal exports
[e-mobility-charging-stations-simulator.git] / src / 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 import { Bootstrap } from './charging-station/Bootstrap';
7
8 Bootstrap.getInstance()
9 .start()
10 .catch((error) => {
11 console.error(chalk.red('Startup error: '), error);
12 });