storage/hash/xxhash/xxhash.go

12 lines
159 B
Go
Raw Normal View History

package xxhash
import (
"github.com/OneOfOne/xxhash"
"github.com/sdstack/storage/hash"
)
func init() {
hash.RegisterHash("xxhash", &xxhash.XXHash64{})
}