oysteikt/wiki-math-bot
oysteikt
/
wiki-math-bot
Archived
1
0
Fork 0

Remove help command

This commit is contained in:
Oystein Kristoffer Tveit 2021-03-26 23:40:31 +01:00
parent 24036ac05b
commit 16eb399328
1 changed files with 0 additions and 17 deletions

View File

@ -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