a21f7fcf07b59c80e341c1f864b3124d74d4ce31
[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 './internal';
6
7 Bootstrap.getInstance()
8 .start()
9 .catch(error => {
10 console.error(chalk.red(error));
11 });