コード例 #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())
}