8 lines
93 B
Go
8 lines
93 B
Go
package ws
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrSendQueueFull = errors.New("客户端队列堵塞")
|
|
)
|