2024-12-14 19:09:06 +08:00
|
|
|
package wInterface
|
|
|
|
|
2024-12-16 11:41:20 +08:00
|
|
|
import (
|
2025-03-05 20:52:20 +08:00
|
|
|
"gitea.zjmud.xyz/phyer/v5sdkgo/ws/wImpl"
|
2024-12-16 11:41:20 +08:00
|
|
|
)
|
2024-12-14 19:09:06 +08:00
|
|
|
|
|
|
|
// 请求数据
|
|
|
|
type WSParam interface {
|
2025-03-05 20:52:20 +08:00
|
|
|
EventType() wImpl.Event
|
2024-12-14 19:09:06 +08:00
|
|
|
ToMap() *map[string]string
|
|
|
|
}
|