本文整理匯總了Golang中github.com/wcharczuk/jarvis/jarvis/core.Bot.LoadedModules方法的典型用法代碼示例。如果您正苦於以下問題:Golang Bot.LoadedModules方法的具體用法?Golang Bot.LoadedModules怎麽用?Golang Bot.LoadedModules使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/wcharczuk/jarvis/jarvis/core.Bot
的用法示例。
在下文中一共展示了Bot.LoadedModules方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: handleModule
func (c *Config) handleModule(b core.Bot, m *slack.Message) error {
moduleText := "currently loaded modules:\n"
for key := range b.LoadedModules() {
moduleText = moduleText + fmt.Sprintf("> `%s`\n", key)
}
return b.Say(m.Channel, moduleText)
}
示例2: handleUnloadModule
func (c *Config) handleUnloadModule(b core.Bot, m *slack.Message) error {
messageWithoutMentions := util.TrimWhitespace(core.LessMentions(m.Text))
parts := core.ExtractSubMatches(messageWithoutMentions, "^module:unload (.+)")
if len(parts) < 2 {
return exception.Newf("malformed message for `%s`", ActionModuleUnload)
}
key := parts[1]
if !b.LoadedModules().Contains(key) {
return b.Sayf(m.Channel, "Module `%s` isn't loaded.", key)
}
if !b.RegisteredModules().Contains(key) {
return b.Sayf(m.Channel, "Module `%s` isn't registered.", key)
}
b.UnloadModule(key)
return b.Sayf(m.Channel, "Unloaded Module `%s`.", key)
}