use fnv instead of md5

This commit is contained in:
2022-03-25 20:40:57 -07:00
parent 4d3bbc0c88
commit f101db6d58
3 changed files with 14 additions and 5 deletions

View File

@@ -1,5 +1,13 @@
package main
import (
"fmt"
go_colorhash "github.com/taigrr/go-colorhash"
)
func main() {
x := go_colorhash.HashString("asdasd")
fmt.Println(x)
}