• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..18-Jul-2019-

.travis.ymlH A D18-Jul-201976 107

CONTRIBUTING.mdH A D18-Jul-2019312 116

CONTRIBUTORSH A D18-Jul-2019105 109

LICENSEH A D18-Jul-20191.4 KiB2824

README.mdH A D18-Jul-2019993 2417

dce.goH A D18-Jul-20192 KiB8144

doc.goH A D18-Jul-2019407 131

hash.goH A D18-Jul-20191.7 KiB5430

marshal.goH A D18-Jul-2019973 4024

node.goH A D18-Jul-20192.5 KiB10470

sql.goH A D18-Jul-20191.4 KiB5933

time.goH A D18-Jul-20193.4 KiB12480

util.goH A D18-Jul-20191.9 KiB4432

uuid.goH A D18-Jul-20194.4 KiB192148

version1.goH A D18-Jul-20191.2 KiB4526

version4.goH A D18-Jul-20191.1 KiB3915

README.md

1**This package is currently in development and the API may not be stable.**
2
3The API will become stable with v1.
4
5# uuid ![build status](https://travis-ci.org/google/uuid.svg?branch=master)
6The uuid package generates and inspects UUIDs based on
7[RFC 4122](http://tools.ietf.org/html/rfc4122)
8and DCE 1.1: Authentication and Security Services.
9
10This package is based on the github.com/pborman/uuid package (previously named
11code.google.com/p/go-uuid).  It differs from these earlier packages in that
12a UUID is a 16 byte array rather than a byte slice.  One loss due to this
13change is the ability to represent an invalid UUID (vs a NIL UUID).
14
15###### Install
16`go get github.com/google/uuid`
17
18###### Documentation
19[![GoDoc](https://godoc.org/github.com/google/uuid?status.svg)](http://godoc.org/github.com/google/uuid)
20
21Full `go doc` style documentation for the package can be viewed online without
22installing this package by using the GoDoc site here:
23http://godoc.org/github.com/google/uuid
24