2024-12-14 17:37:19 +08:00

9 lines
110 B
Go

package wInterface
// 请求数据
type WSReqData interface {
GetType() int
Len() int
ToString() string
}