From 852bb377807e385bd81a53d5f900d47e142fd79b Mon Sep 17 00:00:00 2001 From: srgooglo Date: Thu, 17 Jun 2021 10:53:11 +0200 Subject: [PATCH] export all libraries --- src/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 6943e16..06b6913 100644 --- a/src/index.js +++ b/src/index.js @@ -8,8 +8,9 @@ global.SERVER_MANIFEST = "server.manifest" global.SERVER_MANIFEST_PATH = path.resolve(process.cwd(), SERVER_MANIFEST) //* import libraries -const classes = require('./classes') +const Classes = require('./classes') const Server = require("./server") +const Client = require("./client") //* export libraries -module.exports = { Server, ...classes } \ No newline at end of file +module.exports = { Server, Client, Classes } \ No newline at end of file