mirror of
https://github.com/fumiama/WireGold.git
synced 2025-09-26 19:21:11 +08:00
11 lines
175 B
Go
11 lines
175 B
Go
package bin
|
|
|
|
import (
|
|
"github.com/fumiama/orbyte/pbuf"
|
|
)
|
|
|
|
// SelectWriter 从池中取出一个 Writer
|
|
func SelectWriter() *Writer {
|
|
return (*Writer)(pbuf.NewBuffer(nil))
|
|
}
|