This commit is contained in:
TsMask
2023-08-22 19:25:39 +08:00
parent 38d3b7450e
commit 96de169777
45 changed files with 881 additions and 676 deletions

9
core/model/body.go Normal file
View File

@@ -0,0 +1,9 @@
package model
// 请求数据
type Body struct {
UID string // 连接实例ID
RawData []byte // 原始数据
Name string // 请求名
Data map[string]string // 数据Key
}