Bigger and better rewrite.

This commit is contained in:
Matt Burchett 2020-05-17 01:28:21 -05:00
parent 7c6b9c4a74
commit dc7febd2ad

View File

@ -45,6 +45,10 @@ func (tb *Bot) Handler() {
tb.Bot.HandleMessage("/admin myID", tb.myID)
tb.Bot.HandleMessage("/admin chatID", tb.chatID)
// Help
tb.Bot.HandleMessage("/help", "USAGE:\n\n/movie <Movie Name> or /m <Movie Name>\n/show <TV Show Name> or /s <TV Show Name>\n\nEXAMPLES:\n\n/s The Walking Dead\n/m Avatar")
tb.Bot.HandleMessage("/h", "USAGE:\n\n/movie <Movie Name> or /m <Movie Name>\n/show <TV Show Name> or /s <TV Show Name>\n\nEXAMPLES:\n\n/s The Walking Dead\n/m Avatar")
// Callback Handler
tb.Bot.HandleCallback(tb.callbackHandler)
}