0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-02-23 06:34:32 +01:00

22 lines
305 B
Go
Raw Normal View History

package internal
import (
"sync"
)
var (
// ByteInputAdapterPool shared pool
ByteInputAdapterPool = sync.Pool{
New: func() interface{} {
return &ByteInputAdapter{}
},
}
// ByteBufferPool shared pool
ByteBufferPool = sync.Pool{
New: func() interface{} {
return &ByteBuffer{}
},
}
)