mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09: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)
 | 
						|
}
 |