Added title bar and basic message and command input

This commit is contained in:
khlieng 2015-01-21 03:06:34 +01:00
parent 508a04cf4c
commit f42d6011c6
23 changed files with 399 additions and 83 deletions

View file

@ -26,6 +26,11 @@ type Join struct {
Channels []string `json:"channels"`
}
type Quit struct {
Server string `json:"server"`
User string `json:"user"`
}
type Chat struct {
Server string `json:"server"`
From string `json:"from"`