From 6ec668d7a4b585ae1870dfda0059fd07a81697a4 Mon Sep 17 00:00:00 2001 From: hornet Date: Tue, 9 Nov 2021 14:24:58 -0500 Subject: [PATCH] Added client code --- src/client/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/cli.py b/src/client/cli.py index 02a3d95..ae0d7ae 100644 --- a/src/client/cli.py +++ b/src/client/cli.py @@ -26,7 +26,7 @@ def on_open(ws): if __name__ == "__main__": websocket.enableTrace(True) - ws = websocket.WebSocketApp("wss://hornetfighter.com:9443", + ws = websocket.WebSocketApp("ws://localhost:6873", on_open=on_open, on_message=on_message, on_error=on_error,