12 lines
159 B
Go
12 lines
159 B
Go
package xxhash
|
|
|
|
import (
|
|
"github.com/OneOfOne/xxhash"
|
|
|
|
"github.com/sdstack/storage/hash"
|
|
)
|
|
|
|
func init() {
|
|
hash.RegisterHash("xxhash", &xxhash.XXHash64{})
|
|
}
|