Strict null check fixes
[e-mobility-charging-stations-simulator.git] / src / start.ts
CommitLineData
edd13439 1// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
b4d34251 2
8eac9a09 3import chalk from 'chalk';
7dde0b73 4
5a010bf0 5import { Bootstrap } from './internal';
8114d10e 6
e7aeea18
JB
7Bootstrap.getInstance()
8 .start()
72092cfc 9 .catch((error) => {
8eac9a09 10 console.error(chalk.red(error));
e7aeea18 11 });