fox/ws/iconn.go

12 lines
184 B
Go
Raw Normal View History

2025-05-25 20:02:15 +08:00
package ws
type IConn interface {
2025-05-29 20:30:18 +08:00
Addr() string
NotifyClose()
2025-05-25 20:02:15 +08:00
SendMsg(data []byte) error
Name() string
Id() uint32
UserId() int64
Log(format string, v ...interface{}) string
}