From 16eb399328d18328f878a78ee64b3ee8b5d28ae4 Mon Sep 17 00:00:00 2001
From: h7x4 <h7x4abk3g@protonmail.com>
Date: Fri, 26 Mar 2021 23:40:31 +0100
Subject: [PATCH] Remove help command

---
 src/Bot/BotCommands.fs | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/src/Bot/BotCommands.fs b/src/Bot/BotCommands.fs
index a36c1f1..e9b43d2 100644
--- a/src/Bot/BotCommands.fs
+++ b/src/Bot/BotCommands.fs
@@ -26,20 +26,3 @@ module BotCommands =
            | true  -> ctx.RespondAsync "This is now my channel :)"   |> ignore
            | false -> ctx.RespondAsync "This is now your channel (:" |> ignore
       } |> Async.StartAsTask :> Task 
-
-    [<Command("help")>]
-    member public self.help(ctx:CommandContext) =
-      async { 
-        ctx.RespondAsync 
-        """
-        Hello! This is the WikiMathBot
-
-        Here are some commands you can use:
-        !echo <something> - Test whether I'm awake or not
-        !help             - Display this message
-        !hi               - Same as !echo
-        !toggle           - Toggle my notifications in this channel
-        """ 
-        |> ignore
-      }
-      |> Async.StartAsTask :> Task
\ No newline at end of file
-- 
GitLab