1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-19 16:58:37 +00:00

Bump unrolled/render to v1.1.0 (#15581) (#15608)

v1.1.0 has improved buffer pooling
This commit is contained in:
Nathan Smith
2021-04-24 23:01:52 -07:00
committed by GitHub
parent bdba89452d
commit 57f1476093
10 changed files with 97 additions and 32 deletions

View File

@@ -0,0 +1,9 @@
package render
import "bytes"
// GenericBufferPool abstracts buffer pool implementations
type GenericBufferPool interface {
Get() *bytes.Buffer
Put(*bytes.Buffer)
}