mirror of
https://gitee.com/gitea/gitea
synced 2025-12-21 07:56:35 +08: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)
|
|
},
|
|
}
|