13 lines
324 B
JavaScript
13 lines
324 B
JavaScript
"use strict";
|
|
require("dotenv").config({ path: __dirname + "/./../../.env" });
|
|
|
|
const OLX_CONFIG = require("./specificConfigs/olx");
|
|
const RENTAL_CONFIG = require("./specificConfigs/rental");
|
|
const PROSTOR_CONFIG = require("./specificConfigs/prostor");
|
|
|
|
module.exports = {
|
|
OLX_CONFIG,
|
|
RENTAL_CONFIG,
|
|
PROSTOR_CONFIG
|
|
};
|