X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.js;h=3f47f1fe0b1806b8088014a59c46a05a01edcd1a;hb=dcab13bd38c8362aa507d29bc0eb5ce36b27a753;hp=71edc5a97b9e004c56083f9db8ff885b67cddfa1;hpb=fa098a85e622e86cf403edc783616ec990eaeb91;p=e-mobility-charging-stations-simulator.git diff --git a/src/index.js b/src/index.js index 71edc5a9..3f47f1fe 100644 --- a/src/index.js +++ b/src/index.js @@ -13,7 +13,7 @@ class Bootstrap { let numStationsTotal = 0; Configuration.getChargingStationTemplateURLs().forEach((stationURL) => { try { - // load file + // Load file const fileDescriptor = fs.openSync(stationURL.file, 'r'); const stationTemplate = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')); fs.closeSync(fileDescriptor);