2016-01-17 18:00:44 +00:00
|
|
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
2013-12-10 23:37:07 +00:00
|
|
|
|
2012-08-17 20:38:15 +00:00
|
|
|
package plugins
|
|
|
|
|
2016-01-17 18:00:44 +00:00
|
|
|
import "github.com/velour/catbase/bot"
|
2012-08-17 20:38:15 +00:00
|
|
|
|
|
|
|
// Plugin interface defines the methods needed to accept a plugin
|
|
|
|
type Plugin interface {
|
2012-08-17 22:09:29 +00:00
|
|
|
Message(message bot.Message) bool
|
2012-08-25 04:46:13 +00:00
|
|
|
Event(kind string, message bot.Message) bool
|
2013-05-08 00:08:18 +00:00
|
|
|
BotMessage(message bot.Message) bool
|
2012-08-17 20:38:15 +00:00
|
|
|
LoadData()
|
2012-08-17 22:56:44 +00:00
|
|
|
Help()
|
2013-06-01 17:10:15 +00:00
|
|
|
RegisterWeb()
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|