Info about current irc connections now gets sent to the client, the correct nick shows up when sending messages

This commit is contained in:
khlieng 2015-01-22 01:03:25 +01:00
parent 83ddce0468
commit 9012e4dee5
7 changed files with 26 additions and 10 deletions

View file

@ -8,10 +8,10 @@ import (
)
type Server struct {
Address string
Nick string
Username string
Realname string
Address string `json:"address"`
Nick string `json:"nick"`
Username string `json:"username"`
Realname string `json:"realname"`
}
type Channel struct {