3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-04-11 02:18:13 +02:00
ergo/src/irc/message.go
2012-04-17 20:24:44 -07:00

28 lines
327 B
Go

package irc
type NickMessage struct {
nickname string
}
type UserMessage struct {
user string
mode uint8
unused string
realname string
}
type QuitMessage struct {
message string
}
type UnknownMessage struct {
command string
}
type PingMessage struct {}
type ModeMessage struct {
nickname string
modes []string
}