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