mirror of
https://github.com/taigrr/colorhash.git
synced 2026-04-01 18:58:45 -07:00
13 lines
150 B
Go
13 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
go_colorhash "github.com/taigrr/colorhash"
|
|
)
|
|
|
|
func main() {
|
|
x := go_colorhash.HashString("asdasd")
|
|
fmt.Println(x)
|
|
}
|