fox/ws/iconn.go
2025-05-28 14:54:19 +08:00

11 lines
169 B
Go

package ws
type IConn interface {
NotifyClose()
SendMsg(data []byte) error
Name() string
Id() uint32
UserId() int64
Log(format string, v ...interface{}) string
}