# Golang三国游戏项目 **Repository Path**: HaoWangRabbit/MsSgServer ## Basic Information - **Project Name**: Golang三国游戏项目 - **Description**: Golang项目练习 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-04-04 - **Last Updated**: 2024-03-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Golang三国游戏项目 ## 介绍 Golang 项目练习 ## 项目来源 码神之路 https://www.mszlu.com/ --- ## 回顾之前所写 (Day:2024.3.12) - 文件列表 ```bash ├── conf │ └── conf.ini # 数据库 服务器地址 等配置信息 ├── config │ └── config.go # 读取 conf 下的 conf.ini 配置文件 ├── constant | └── code.go # 规则码 ├── db | └── mysql.go # mysql 数据库配置、驱动 ├── net | └── clientconn.go # 客户端链接响应 | └── proxyClient.go # 网关 代理客户端 | └── router.go # 路由 | └── server.go # 服务端监听 | └── wsconn.go # Websocket 链接 | └── wsmgr.go # websocket 登陆缓存 ├── server ├── getServer.go ├── loginServer.go // 登陆服务 ├── main.go // 主应用程序入口 └── webServer.go // Web 服务 ``` ## 记录更新