Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions pkg/app/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ func ProcessCommand(env def.SessionData, bot platform.Platform) def.SessionData
case CMD_SUBSCRIBE:
env = UpdateSubscription(env)
break
case CMD_LEXICON:
env = GetBibleWord(env)
break
case CMD_SEARCH:
env = GetBibleSearch(env)
break
Expand Down
1 change: 0 additions & 1 deletion pkg/app/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const CMD_VERSION = "version"
const CMD_SUBSCRIBE = "subscribe"
const CMD_DEVO = "devo"
const CMD_TMS = "tms"
const CMD_LEXICON = "lexicon"
const CMD_CLOSE = "close"
const CMD_SEARCH = "search"
const CMD_ASK = "ask"
Expand Down
65 changes: 0 additions & 65 deletions pkg/app/lexicon.go

This file was deleted.

29 changes: 0 additions & 29 deletions pkg/app/lexicon_test.go

This file was deleted.

2 changes: 1 addition & 1 deletion pkg/bot/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

func HelpMessage(env *def.SessionData) string {
return fmt.Sprintf("Hello %s! Give me a Bible reference and I'll give you the passage!\nHere are some other things I can do:\n/version - Choose your preferred Bible version\n/tms - Get a card from the Navigators' Topical Memory System\n/devo - Get reading material right now\n/lexicon - Search for a passage, lexicon entry, word or phrase\n", env.User.Firstname)
return fmt.Sprintf("Hello %s! Give me a Bible reference and I'll give you the passage!\nHere are some other things I can do:\n/version - Choose your preferred Bible version\n/tms - Get a card from the Navigators' Topical Memory System\n/devo - Get reading material right now\n", env.User.Firstname)
//\n/subscribe - Subscribe to / Unsubscribe from daily reading material
}

Expand Down
Loading