This commit is contained in:
2021-10-20 18:47:32 +08:00
parent b1353fc647
commit 67d44ea967
5 changed files with 266 additions and 272 deletions

19
types/types.go Normal file
View File

@@ -0,0 +1,19 @@
/**
* @Author: jager
* @Email: lhj168os@gmail.com
* @File: types
* @Date: 2021/10/20 5:03 下午
* @package: types
* @Version: v1.0.0
*
* @Description:
*
*/
package types
type Msg struct {
MsgID int `json:"msg_id"`
Seq int64 `json:"seq"`
Msg string `json:"msg"`
}