This commit is contained in:
2025-06-20 17:00:56 +08:00
parent e17648cb60
commit 1b55403cd6
13 changed files with 1266 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package handler
// TomeeHeader 结构体字段定义
type TomeeHeader struct {
Version string `json:"version"`
UserID int `json:"userId"`
Error int `json:"error"`
CMDID int `json:"cmdId"`
Result int `json:"result"`
}
type TomeeHandler struct {
}
func NewTomeeHandler() *TomeeHandler {
return &TomeeHandler{
}
}
// Handle entry receiver
func (h *TomeeHandler) Handle(data []byte ) {
}