fox/ws/iconn.go
2025-05-29 20:30:18 +08:00

12 lines
184 B
Go

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