initial import

Signed-off-by: Vasiliy Tolstov <v.tolstov@selfip.ru>
This commit is contained in:
2018-03-22 13:35:38 +03:00
commit 83f9fa19ad
73 changed files with 4302 additions and 0 deletions

11
hash/xxhash/xxhash.go Normal file
View File

@@ -0,0 +1,11 @@
package xxhash
import (
"github.com/OneOfOne/xxhash"
"github.com/sdstack/storage/hash"
)
func init() {
hash.RegisterHash("xxhash", &xxhash.XXHash64{})
}