Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 978 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 978 Bytes

go-uniqid   Tweet

License: Apache 2 Golang Version GitHub issues Travis CI

Simple PHP uniqid() implementation in Golang

How to use

Just include our package

go get github.com/mintance/go-uniqid

See samples

In PHP was:

$id = uniqid("test", true);

In Go type:

id := uniqid.New(uniqid.Params{"test", true})