This commit is contained in:
2026-01-18 18:20:40 +08:00
commit 20ed44aa74
178 changed files with 13789 additions and 0 deletions

7
Backend/ws/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package ws
import "errors"
var (
ErrSendQueueFull = errors.New("客户端队列堵塞")
)