mirror of
https://github.com/ergochat/ergo.git
synced 2025-04-11 02:18:13 +02:00
28 lines
327 B
Go
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
|
|
}
|