fox/ws/iconn.go

12 lines
178 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
2025-06-02 15:29:03 +08:00
Close()
2025-05-25 20:02:15 +08:00
SendMsg(data []byte) error
Name() string
Id() uint32
UserId() int64
Log(format string, v ...interface{}) string
}