У меня есть структура "Сервер", и я хотел бы l oop поверх карты клиентов и распечатать содержимое.
//Server is the main server
type Server struct {
clients map[*Client]bool // *client -> is connected (true/false)
broadcast chan *[]byte
mutex sync.Mutex
upgrader *websocket.Upgrader
stats Statistics
activeClients []ActiveClient
}
Примечание: я новичок в go, поэтому буду рад выслушать все советы :)