This commit is contained in:
2025-06-27 21:03:23 +08:00
parent 0f29dccec4
commit 54dc7ba173
5 changed files with 188 additions and 11 deletions

View File

@@ -26,8 +26,8 @@ type ISocketServer interface {
// ISocketConn 由网络层实现
type ISocketConn interface {
GetParam(key string) interface{}
SetParam(key string, values interface{})
GetParam(key string) string
SetParam(key string, values string)
Write(data []byte) error
Close() error
}