You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
133 B

5 years ago
  1. package ws
  2. func init() {
  3. N.RegisterLogic("msg", msgFunc)
  4. }
  5. // 简单明了
  6. func msgFunc(c *Client, msg *Message) {
  7. c.Send(msg)
  8. }