package core import ( "fmt" "time" "git.echol.cn/loser/Go-Web-Template/server/global" "git.echol.cn/loser/Go-Web-Template/server/initialize" mcpTool "git.echol.cn/loser/Go-Web-Template/server/mcp" "git.echol.cn/loser/Go-Web-Template/server/service/system" "go.uber.org/zap" ) func RunServer() { if global.GVA_CONFIG.System.UseRedis { initialize.Redis() if global.GVA_CONFIG.System.UseMultipoint { initialize.RedisList() } } if global.GVA_CONFIG.System.UseMongo { if err := initialize.Mongo.Initialization(); err != nil { zap.L().Error(fmt.Sprintf("%+v", err)) } } if global.GVA_DB != nil { system.LoadAll() } Router := initialize.Routers() address := fmt.Sprintf(":%d", global.GVA_CONFIG.System.Addr) mcpBaseURL := mcpTool.ResolveMCPServiceURL() fmt.Printf(` 欢迎使用 Gin-React-Admin 当前版本:%s 默认自动化文档地址:http://127.0.0.1%s/swagger/index.html MCP 独立服务请手动启动: go run ./cmd/mcp -config ./cmd/mcp/config.yaml 默认MCP StreamHTTP地址:%s 默认前端文件运行地址:http://127.0.0.1:8080 `, global.Version, address, mcpBaseURL) initServer(address, Router, 10*time.Minute, 10*time.Minute) }