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.

13 lines
324 B

6 years ago
6 years ago
6 years ago
6 years ago
  1. package main
  2. import (
  3. "github.com/ouxuanserver/osmanthuswine"
  4. "github.com/ouxuanserver/osmanthuswine/example/app"
  5. "github.com/ouxuanserver/osmanthuswine/src/core"
  6. )
  7. func main() {
  8. core.GetInstanceRouterManage().Registered(&app.Wstest{})
  9. core.GetInstanceRouterManage().Registered(&app.Ctltest{})
  10. osmanthuswine.Run()
  11. }