2019-09-18 15:32:48 +02:00
|
|
|
"use strict";
|
2019-09-30 09:44:19 +02:00
|
|
|
require("dotenv").config({ path: __dirname + "/./../../.env" });
|
2019-09-18 15:32:48 +02:00
|
|
|
|
2019-10-24 16:57:23 +02:00
|
|
|
const OLX_CONFIG = require("./specificConfigs/olx");
|
|
|
|
|
const RENTAL_CONFIG = require("./specificConfigs/rental");
|
2019-10-24 17:11:12 +02:00
|
|
|
const PROSTOR_CONFIG = require("./specificConfigs/prostor");
|
2019-10-28 09:14:45 +01:00
|
|
|
const AKTIDO_CONFIG = require("./specificConfigs/aktido");
|
2020-01-29 01:09:53 +01:00
|
|
|
const SALJIC_CONFIG = require("./specificConfigs/saljic");
|
2019-10-24 07:48:49 +02:00
|
|
|
|
2019-09-18 15:32:48 +02:00
|
|
|
module.exports = {
|
2019-10-24 07:48:49 +02:00
|
|
|
OLX_CONFIG,
|
2019-10-24 17:11:12 +02:00
|
|
|
RENTAL_CONFIG,
|
2019-10-28 09:14:45 +01:00
|
|
|
PROSTOR_CONFIG,
|
2020-01-29 01:09:53 +01:00
|
|
|
AKTIDO_CONFIG,
|
|
|
|
|
SALJIC_CONFIG
|
2019-09-18 15:32:48 +02:00
|
|
|
};
|