1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-04 23:40:26 +08:00
Files
WireGold/internal/bin/pool.go
2025-03-12 22:20:02 +09:00

11 lines
175 B
Go

package bin
import (
"github.com/fumiama/orbyte/pbuf"
)
// SelectWriter 从池中取出一个 Writer
func SelectWriter() *Writer {
return (*Writer)(pbuf.NewBuffer(nil))
}