From 165fc122ac8d13a9eb6868a046ab4c7313c5b5f9 Mon Sep 17 00:00:00 2001 From: Mahesh MS Date: Tue, 22 Mar 2022 03:28:23 +0800 Subject: [PATCH] Added help keywords to show help: h, help --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index ac47316..9041fa6 100644 --- a/main.cpp +++ b/main.cpp @@ -59,7 +59,8 @@ void keybord(WebSocket::pointer ws) } if (help_key.find(keyword) != help_key.end()) { - console.print("\nHelp ws-clinet v0.1", { console.invert }); + console.print("\nHelp ws-client v0.1", { console.invert }); + console.log("More info: https://github.com/memoryInject/ws-client"); } } }