3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-14 05:57:18 +00:00

Port BotControl

This commit is contained in:
Dragory 2020-07-30 03:21:07 +03:00
parent b66e601cef
commit f500034729
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
10 changed files with 237 additions and 2 deletions

View file

@ -0,0 +1,13 @@
let activeReload: [string, string] = null;
export function getActiveReload() {
return activeReload;
}
export function setActiveReload(guildId: string, channelId: string) {
activeReload = [guildId, channelId];
}
export function resetActiveReload() {
activeReload = null;
}