You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
const genericVinParserFactory = require("./generics/generic-vin-parser");
|
|
const genericShowCarThumbs = require('./generics/generic-showCarThumbs');
|
|
|
|
module.exports = {
|
|
baseUrl: 'survivor-cars.com',
|
|
execute: genericShowCarThumbs({}),
|
|
parseVIN: async function(page) {
|
|
return null;
|
|
},
|
|
parseMileage: async function (page) {
|
|
return null;
|
|
}
|
|
} |