Add support for more DB engines via TypeORM
[e-mobility-charging-stations-simulator.git] / src / start.ts
1 import 'reflect-metadata';
2
3 import Bootstrap from './charging-station/Bootstrap';
4 import chalk from 'chalk';
5
6 Bootstrap.getInstance().start().catch(
7 (error) => {
8 console.error(chalk.red(error));
9 }
10 );