示例#1
0
文件: irc.go 项目: iopred/bruxism
// RawMessage returns the raw message content for this message.
func (m *IRCMessage) RawMessage() string {
	i := client.Line(*m)
	return i.Text()
}
示例#2
0
文件: irc.go 项目: iopred/bruxism
// Channel returns the channel id for this message.
func (m *IRCMessage) Channel() string {
	i := client.Line(*m)
	return i.Target()
}