Versions in this module Expand all Collapse all v0 v0.0.1 May 24, 2023 Changes in this version + func ProcessData(c *Client, msg *WsMsg) + type Client struct + ID string + Msg chan []byte + Socket *websocket.Conn + func NewWsClient(ID string, socket *websocket.Conn) *Client + func (c *Client) Read() + func (c *Client) Write() + type Manager struct + ClientCount uint + Group map[string]*Client + Lock sync.Mutex + Register chan *Client + UnRegister chan *Client + func (m *Manager) RegisterClient(client *Client) + func (m *Manager) Start() + func (m *Manager) UnRegisterClient(client *Client) + type WsMsg struct + Keys []string + Type string