From 73be2e035de2de72bb06455ae39692b6b7a1b665 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Thu, 13 Sep 2018 22:14:42 +0100 Subject: [PATCH] add help command to CLI. --- DeathSocketCLI/Commands.fs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DeathSocketCLI/Commands.fs b/DeathSocketCLI/Commands.fs index f6359ee..e0b5bd6 100644 --- a/DeathSocketCLI/Commands.fs +++ b/DeathSocketCLI/Commands.fs @@ -5,10 +5,13 @@ open DeathSocket.GridPainter open Validation open System.IO + open Console.Waterworks let showEndOfCommandMessage = "[INFO.] Task completed." - let test () = "Death Socket is working." + let test () = "[SUCCESS] Death Socket is working." + + let help () = CW_Liaison().RequestHelpDocumentation("Commands") let exit () = Environment.Exit (Environment.ExitCode)