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
This commit is contained in:
Logan Cusano
2024-03-03 00:10:43 -05:00
parent 63ad20b9b3
commit 35f3f07793
8 changed files with 504 additions and 64 deletions

View File

@@ -0,0 +1,14 @@
let currentSystem = undefined;
export const openOP25 = async (systemName) => {
currentSystem = systemName;
}
export const closeOP25 = async () => {
currentSystem = undefined;
}
export const getCurrentSystem = async () => {
return currentSystem;
}