Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 408 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 408 Bytes

uuid

simple UUID v4 library

Getting Started

Installing

Use Go and run go get:

$ go get github.com/mukeshm/uuid

This will retrieve the library and place it in your $GOPATH

Using UUID

Import uuid

import "github.com/mukeshm/uuid"

This will import uuid library into your package

Generating a new UUID v4

u, err := uuid.GenerateV4()
uuid := u.String()