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.

34 lines
720 B

3 years ago
  1. package core
  2. import (
  3. "fmt"
  4. "time"
  5. "autocode/global"
  6. "autocode/initialize"
  7. "go.uber.org/zap"
  8. )
  9. type server interface {
  10. ListenAndServe() error
  11. }
  12. func RunWindowsServer() {
  13. if global.GVA_CONFIG.System.UseMultipoint {
  14. // 初始化redis服务
  15. initialize.Redis()
  16. }
  17. Router := initialize.Routers()
  18. Router.Static("/form-generator", "./resource/page")
  19. address := fmt.Sprintf(":%d", global.GVA_CONFIG.System.Addr)
  20. s := initServer(address, Router)
  21. // 保证文本顺序输出
  22. // In order to ensure that the text order output can be deleted
  23. time.Sleep(10 * time.Microsecond)
  24. global.GVA_LOG.Info("server run success on ", zap.String("address", address))
  25. global.GVA_LOG.Error(s.ListenAndServe().Error())
  26. }