simple UUID v4 library
Use Go and run go get
:
$ go get github.com/mukeshm/uuid
This will retrieve the library and place it in your $GOPATH
Import uuid
import "github.com/mukeshm/uuid"
This will import uuid
library into your package
u, err := uuid.GenerateV4()
uuid := u.String()