Files
backend/accounts/misc.js
2025-06-22 11:41:21 -04:00

8 lines
169 B
JavaScript
Executable File

function shitHitTheFan(msg) {
console.error("smth bad, ", msg);
fetch("https://ntfy.sh/" + process.env.NTFY_ALERT, {
method: "POST",
body: msg,
});
}
export { };