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.

38 lines
926 B

package core
import (
"fmt"
"pure/global"
"pure/initialize"
"time"
"go.uber.org/zap"
)
type server interface {
ListenAndServe() error
}
func RunWindowsServer() {
// 初始化redis服务
// initialize.Redis()
//NewRedisEventSink(global.MG_CONFIG.Redis.DB, "expired")
Router := initialize.Routers()
Router.Static("/form-generator", "./resource/page")
address := fmt.Sprintf(":%d", global.MG_CONFIG.System.Addr)
s := initServer(address, Router)
// 保证文本顺序输出
// In order to ensure that the text order output can be deleted
time.Sleep(10 * time.Microsecond)
global.MG_LOG.Info("server run success on ", zap.String("address", address))
fmt.Printf(`
欢迎使用 MangGuoNews-Admin
当前版本:V2.4.2
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html
默认前端文件运行地址:http://127.0.0.1%s
`, address, address)
global.MG_LOG.Error(s.ListenAndServe().Error())
}