1
0
mirror of https://github.com/google/uuid.git synced 2024-11-24 08:32:23 +02:00
uuid/README.md

20 lines
811 B
Markdown
Raw Normal View History

# uuid
The uuid package generates and inspects UUIDs based on
2016-07-08 06:55:56 +02:00
[RFC 4122](http://tools.ietf.org/html/rfc4122)
and DCE 1.1: Authentication and Security Services.
2015-07-17 16:13:31 +02:00
This package is based on the github.com/pborman/uuid package (previously named
code.google.com/p/go-uuid). It differs from these earlier packages in that
a UUID is a 16 byte array rather than a byte slice. One loss due to this
change is the ability to represent an invalid UUID (vs a NIL UUID).
2015-07-17 16:13:31 +02:00
###### Install
2016-02-17 01:19:02 +02:00
`go get github.com/google/uuid`
2015-07-17 16:13:31 +02:00
###### Documentation
2016-02-17 01:19:02 +02:00
[![GoDoc](https://godoc.org/github.com/google/uuid?status.svg)](http://godoc.org/github.com/google/uuid)
2015-07-17 16:13:31 +02:00
Full `go doc` style documentation for the package can be viewed online without
installing this package by using the GoDoc site here:
2020-03-04 16:59:31 +02:00
http://pkg.go.dev/github.com/google/uuid