mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
13 lines
133 B
Go
13 lines
133 B
Go
package object
|
|
|
|
import (
|
|
"bufio"
|
|
"sync"
|
|
)
|
|
|
|
var bufPool = sync.Pool{
|
|
New: func() interface{} {
|
|
return bufio.NewReader(nil)
|
|
},
|
|
}
|