11 lines
169 B
Go
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
|
|
}
|