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.
ListingExtractor/server/processors/vanguardmotorsales.processo...

15 lines
415 B
JavaScript

const _ = require('lodash');
const genericVinParserFactory = require("./generics/generic-vin-parser");
const genericShowCarThumbs = require('./generics/generic-showCarThumbs');
module.exports = {
baseUrl: 'vanguardmotorsales.com',
execute: genericShowCarThumbs({}),
parseVIN: async function (page) {
return null;
},
parseMileage: async function (page) {
return null;
}
}