mirror of
https://github.com/ClusterCockpit/cc-metric-store.git
synced 2025-10-30 08:35:07 +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)
|
|
}
|