Binary deserialization

This commit is contained in:
Lou Knauer
2022-07-13 12:57:37 +02:00
parent 91ced41de2
commit 85fa3ce7bc
2 changed files with 171 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
package memstore
func RequestBytes(len int) []byte {
// TODO: Use mmap etc...!
return make([]byte, len)
}