Files

25 lines
481 B
JavaScript
Raw Permalink Normal View History

2024-06-24 21:40:59 +01:00
let config = {
address: "0.0.0.0",
ipWhitelist: [],
2024-06-24 21:40:59 +01:00
modules: [
{
module: "compliments",
position: "middle_center",
config: {
specialDayUnique: false,
compliments: {
anytime: [
"Typical message 1",
"Typical message 2",
"Typical message 3"
],
"....-..-..": ["Special day message"]
}
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") { module.exports = config; }