Files
gitea/vendor/github.com/unrolled/render/genericbufferpool.go
T
2021-04-25 14:01:52 +08:00

10 lines
169 B
Go
Vendored

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