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