mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-05 03:56:43 +08:00
10 lines
169 B
Go
Vendored
10 lines
169 B
Go
Vendored
package render
|
|
|
|
import "bytes"
|
|
|
|
// GenericBufferPool abstracts buffer pool implementations
|
|
type GenericBufferPool interface {
|
|
Get() *bytes.Buffer
|
|
Put(*bytes.Buffer)
|
|
}
|