3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-16 14:11:50 +00:00
zeppelin/backend/src/globals.ts

10 lines
142 B
TypeScript
Raw Normal View History

let isAPIValue = false;
export function isAPI() {
return isAPIValue;
}
export function setIsAPI(value: boolean) {
isAPIValue = value;
}