main.go 249 B

1234567891011121314
  1. package main
  2. import (
  3. "app.yhyue.com/moapp/jybase/go-xweb/xweb"
  4. _ "leadGeneration/public"
  5. _ "leadGeneration/services"
  6. "leadGeneration/vars"
  7. "net/http"
  8. )
  9. func main() {
  10. mux1 := http.NewServeMux()
  11. xweb.RunBase(":"+vars.Config.WebPort, mux1)
  12. }