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.

14 lines
266 B

5 years ago
5 years ago
  1. package ws
  2. type logic func(client *Client, msg *Message)
  3. const IDCustomer = "customer"
  4. const IDUser = "user"
  5. const IDEntry = "entry"
  6. const TypeNotice = "notice"
  7. const TypeLogin = "login"
  8. const LogicLogin = "login"
  9. const LogicSync = "sync"
  10. const PoolSize = 10000