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.
14 lines
414 B
JavaScript
14 lines
414 B
JavaScript
const _ = require('lodash');
|
|
const genericVinParserFactory = require("./generics/generic-vin-parser");
|
|
const genericShowCarThumbs = require('./generics/generic-showCarThumbs');
|
|
module.exports = {
|
|
baseUrl: 'cruisinclassicsinc.com',
|
|
execute: genericShowCarThumbs({}),
|
|
parseVIN: async function (page) {
|
|
return null;
|
|
},
|
|
parseMileage: async function (page) {
|
|
return null;
|
|
}
|
|
|
|
} |