1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00
Files
lazygit/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/common.go
2020-10-06 21:58:41 +11:00

13 lines
133 B
Go

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