mirror of
https://github.com/ClusterCockpit/cc-metric-store.git
synced 2024-11-10 13:17:25 +01:00
8 lines
110 B
Go
8 lines
110 B
Go
package memstore
|
|
|
|
func RequestBytes(len int) []byte {
|
|
// TODO: Use mmap etc...!
|
|
|
|
return make([]byte, len)
|
|
}
|