2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-10 14:47:06 +00:00

12 lines
151 B
Go
Raw Normal View History

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