This commit is contained in:
hiifong
2025-07-21 09:04:37 +00:00
parent 093cddbcb6
commit 1d9bdb5b44

View File

@@ -12,8 +12,8 @@ type Tool struct {
func New() *Tool {
return &Tool{
write: make([]server.ServerTool, 100),
read: make([]server.ServerTool, 100),
write: make([]server.ServerTool, 0, 100),
read: make([]server.ServerTool, 0, 100),
}
}