Files
DRBv3/client/op25Handler/op25Handler.mjs
Logan Cusano 35f3f07793 Working on #9
- Can join and leave from voice channels
- Will check to make sure that the bot is in a given system or no system before joining
- Cleaned up the socket client with wrappers
- Added a new module to handle subprocesses for the client
- Beginning workings on OP25 handler
- Added OP25 config object generator with config exporter
2024-03-03 00:10:43 -05:00

14 lines
262 B
JavaScript

let currentSystem = undefined;
export const openOP25 = async (systemName) => {
currentSystem = systemName;
}
export const closeOP25 = async () => {
currentSystem = undefined;
}
export const getCurrentSystem = async () => {
return currentSystem;
}