@ccci/micro-server 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -99275,7 +99275,9 @@ class ApplicationServer {
|
|
|
99275
99275
|
Logger.info(`API Sever ready at: http://127.0.0.1:${port}\n`);
|
|
99276
99276
|
});
|
|
99277
99277
|
if (options?.enableWebSocket) {
|
|
99278
|
-
|
|
99278
|
+
Logger.info("enabling websocket :>>");
|
|
99279
|
+
let weboscket = new WebSocketServer(server);
|
|
99280
|
+
Logger.info(`enabling websocket :>> ${weboscket}}`);
|
|
99279
99281
|
}
|
|
99280
99282
|
}
|
|
99281
99283
|
getInstance() {
|