Example #1
0
func init() {
	ping := Ping{
		Regexp: regexp.MustCompile(`ping`),
	}
	bot.AddEvent("ping", ping)
}
Example #2
0
func init() {
	hello := Hello{
		Regexp: regexp.MustCompile(`hi|hello|こんにちわ`),
	}
	bot.AddEvent("hello", hello)
}