Files
old-web/app/crawler/crawlerConfig.js

11 lines
245 B
JavaScript
Raw Normal View History

2019-09-18 15:32:48 +02:00
"use strict";
require("dotenv").config({ path: __dirname + "/./../../.env" });
2019-09-18 15:32:48 +02:00
const OLX_CONFIG = require("./specificConfigs/olx");
const RENTAL_CONFIG = require("./specificConfigs/rental");
2019-09-18 15:32:48 +02:00
module.exports = {
OLX_CONFIG,
RENTAL_CONFIG
2019-09-18 15:32:48 +02:00
};