cc-metric-store/internal/memstore/allocator.go

8 lines
110 B
Go
Raw Normal View History

2022-07-13 12:57:37 +02:00
package memstore
func RequestBytes(len int) []byte {
// TODO: Use mmap etc...!
return make([]byte, len)
}