1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-08 01:24:57 +08:00
Files
WireGold/helper/pool.go
2025-02-25 19:38:16 +09:00

11 lines
178 B
Go

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