# go_meeting **Repository Path**: dev_gx/go_meeting ## Basic Information - **Project Name**: go_meeting - **Description**: 会议系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-13 - **Last Updated**: 2025-05-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DongTian Server (Go WebSocket 版本) 会议系统 go版本 ## 安装和运行 ### 前提条件 - Go 1.16 或更高版本 ### 安装步骤 1. 安装依赖 ```bash go mod tidy ``` 2. 编译和运行 ```bash go build ./dongtian-server ``` 服务器默认在 `7789` 端口启动,WebSocket 端点为 `/meeting`。 ## 协议说明 服务器使用 JSON 格式的消息进行通信,消息结构如下: ```json { "cmd": 1, "data": "{...}" } ```