File size: 472 Bytes
a4cf109 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
const config = JSON.parse(require("fs").readFileSync(__dirname + "/../config.json"));
module.exports.fetchOptions = {
headers: {
"Upgrade-Insecure-Requests": "1",
"Sec-GPC": "1",
"Cookie": config.cookie,
},
method: "GET",
compress: true,
redirect: "follow",
};
module.exports.domain = config.domain;
module.exports.listURL = config.listURL;
module.exports.additionalBookLocation = config.additionalBookLocation; |