fox/ws/iconn.go
2025-06-02 15:29:03 +08:00

12 lines
178 B
Go

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