package ws func init() { N.SetMiddleware("msg", msgFunc) } // 简单明了 func msgFunc(c *Client, msg *Message) { msg.RoomId = c.RoomId msg.From = c.Id c.Send(msg) }