import fs from "node:fs";
const redactionList = ["clientSecret", "clientId", "password"];
const customRedactionList = fs.existsSync("redactionList.json")
? JSON.parse(fs.readFileSync("redactionList.json", "utf-8"))
: [];
export default redactionList.concat(customRedactionList);