speps / go-hashids

Go (golang) implementation of http://www.hashids.org
MIT License
1.32k stars 109 forks source link

Add command line tool: cmd/hashid #25

Closed dolmen closed 7 years ago

dolmen commented 7 years ago

Just a command-line tool to experiment with the library.

speps commented 7 years ago

I'll just remove the .gitignore in another commit as the usual way to install commands is with go install which puts it in $GOPATH/bin.

dolmen commented 7 years ago

The .gitignore IS useful to any contributors, not just myself. go install is the usual command for installing, but during development go build is safer because it doesn't affect the hashid in $PATH.