0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-09-16 06:08:59 +02:00
gitea/vendor/github.com/unrolled/render/genericbufferpool.go

10 lines
169 B
Go
Raw Normal View History

package render
import "bytes"
// GenericBufferPool abstracts buffer pool implementations
type GenericBufferPool interface {
Get() *bytes.Buffer
Put(*bytes.Buffer)
}