1
1
mirror of https://github.com/go-gitea/gitea synced 2025-01-15 04:04:26 +00:00

13 lines
133 B
Go
Raw Normal View History

package object
import (
"bufio"
"sync"
)
var bufPool = sync.Pool{
New: func() interface{} {
return bufio.NewReader(nil)
},
}