3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-19 08:05:01 +00:00

Don'Ãt run message cleanup queries in the API process

This commit is contained in:
Dragory 2020-05-28 02:45:07 +03:00
parent 3e52aa61f4
commit eeaf0d663a
3 changed files with 17 additions and 2 deletions

9
backend/src/globals.ts Normal file
View file

@ -0,0 +1,9 @@
let isAPIValue = false;
export function isAPI() {
return isAPIValue;
}
export function setIsAPI(value: boolean) {
isAPIValue = value;
}