feat(coolconfig): 修改端口配置字段名称

将配置结构体中的Port字段重命名为LoginPort,以更准确地反映其用途
作为登录端口配置,避免与GameOnlineID字段的注释混淆
```
This commit is contained in:
昔念
2026-01-20 16:59:23 +08:00
parent 07d25b3e96
commit 8049e273f6
8 changed files with 25 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ import (
"github.com/gogf/gf/v2/util/gconv"
)
var defaultPort = gconv.Int(cool.Config.Port) //读入默认的端口
var defaultPort = gconv.Int(cool.Config.LoginPort) //读入默认的端口
func reg() {
go rpc.StartServer()
controller.Init(false)