12345678910111213141516171819202122 |
- package main
- import (
- "net/http"
- _ "taskCenter/a"
- _ "taskCenter/action"
- "taskCenter/config"
- _ "taskCenter/filter"
- "app.yhyue.com/moapp/jybase/go-xweb/xweb"
- )
- func main() {
- mux1 := http.NewServeMux()
- xweb.RunBase(":"+config.Sysconfig.Webport, mux1)
- }
- /*
- 3.206:27080 > 3.149:27180
- 3.206:27090 > 3.149:27190
- 3.206:27002 > 3.149:27102
- */
|