diff --git a/server.js b/server.js index 5344909..17709b9 100644 --- a/server.js +++ b/server.js @@ -22,11 +22,15 @@ try { global.config = require("./config.json"); -const pop3 = new Pop3Command(global.config["pop3-config"]); - class POP3 extends EventEmitter { constructor () { super(); + this.pop3cmd = new Pop3Command(global.config["pop3-config"]); } } +const pop3 = new POP3(); + +let interval = setTimeout(async () => { + +}, 1);