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.

15 lines
315 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package main
  2. import (
  3. "github.com/ouxuanserver/osmanthuswine"
  4. "github.com/ouxuanserver/osmanthuswine/src/core"
  5. "hdws/ws"
  6. _ "hdws/ws/logics"
  7. )
  8. func main() {
  9. // hdws
  10. core.GetInstanceRouterManage().Registered(new(ws.WsCtl))
  11. core.GetInstanceRouterManage().Registered(new(ws.MessageCtl))
  12. osmanthuswine.Run()
  13. }