in-progress commit for hash functionality extension

This commit is contained in:
2022-10-11 13:21:12 -07:00
parent 5c6cb8e0c9
commit 50823c20b8
5 changed files with 62 additions and 9 deletions

View File

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