basic dal and json

This commit is contained in:
2025-11-18 23:14:26 -07:00
parent 0e8f43f686
commit 0d33259f1e
10 changed files with 528 additions and 49 deletions

View File

@@ -0,0 +1,8 @@
vehicleData=require('./data/vehicles.json');
exports.DAL={
getVehicles:function() {
return vehicleData;
},
};