Added basic mode support with op/voice and userlist sorting

This commit is contained in:
khlieng 2015-01-25 02:35:46 +01:00
parent 0c2250b268
commit 721971cbb3
8 changed files with 170 additions and 11 deletions

View file

@ -26,6 +26,14 @@ type Join struct {
Channels []string `json:"channels"`
}
type Mode struct {
Server string `json:"server"`
Channel string `json:"channel"`
User string `json:"user"`
Add string `json:"add"`
Remove string `json:"remove"`
}
type Quit struct {
Server string `json:"server"`
User string `json:"user"`