示例#1
0
文件: ping.go 项目: szkkentaro/g-3po
// Match method checks input message and returns valid result.
func (p Ping) Match(in bot.Message) bool {
	return p.MatchString(in.String())
}
示例#2
0
文件: hello.go 项目: szkkentaro/g-3po
// Match method checks input message and returns valid result.
func (h Hello) Match(in bot.Message) bool {
	return h.MatchString(in.String())
}