diff --git a/processors/customclassics.processor.js b/processors/customclassics.processor.js new file mode 100644 index 0000000..81545c8 --- /dev/null +++ b/processors/customclassics.processor.js @@ -0,0 +1,15 @@ + +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; + } + +} \ No newline at end of file