mvp & email signature

This commit is contained in:
2026-04-21 16:15:18 +00:00
parent 071fae2ea3
commit bf901039bc
15 changed files with 137 additions and 1291 deletions

15
api/botClient.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* bOSScord API: reference to the Discord bot client.
* Set in broccolini-discord.js when client fires "ready"; read by bosscord routes.
*/
let botClient = null;
function setBot(client) {
botClient = client;
}
function getBot() {
return botClient;
}
module.exports = { setBot, getBot };