Simple PHP uniqid() implementation in Golang
go get github.com/mintance/go-uniqid
In PHP was:
$id = uniqid("test", true);
In Go type:
id := uniqid.New(uniqid.Params{"test", true})