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/processors/customclassics.processor.js

15 lines
411 B
JavaScript

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