status-go/vendor/github.com/VictoriaMetrics/fastcache/malloc_heap.go

12 lines
151 B
Go

// +build appengine windows
package fastcache
func getChunk() []byte {
return make([]byte, chunkSize)
}
func putChunk(chunk []byte) {
// No-op.
}