move userMonitorList out of server.js

This commit is contained in:
LouisLam
2021-09-08 16:27:37 +08:00
parent 230a9bfaf9
commit a7cf14c663
4 changed files with 9 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
/**
* Main monitor list
*/
class UserMonitorList {
list = {};
add(userID, monitor) {
@@ -46,4 +48,6 @@ class UserMonitorList {
}
module.exports = UserMonitorList;
module.exports = {
userMonitorList: new UserMonitorList(),
};