package chat import ( "strings" ) func ClientMessageHandler(client *Client, msg string) { splitMsg := strings.Split(msg, " ") if len(splitMsg) == 2 && splitMsg[0] == "JOIN" { client.send <- "OK" client.FollowingStreamers[splitMsg[1]] = true FollowStreamer(splitMsg[1]) return } else { client.Close() } }