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

..03-May-2022-

.gitignoreH A D21-Dec-201363

COPYINGH A D21-Dec-20131.1 KiB

README.mdH A D21-Dec-2013580

example_test.goH A D21-Dec-2013522

uuid.goH A D21-Dec-20134.7 KiB

uuid_test.goH A D21-Dec-20134.1 KiB

README.md

1# Pure Go UUID implementation
2
3This package provides immutable UUID structs and the functions
4NewV3, NewV4, NewV5 and Parse() for generating versions 3, 4
5and 5 UUIDs as specified in [RFC 4122](http://www.ietf.org/rfc/rfc4122.txt).
6
7## Installation
8
9Use the `go` tool:
10
11	$ go get github.com/nu7hatch/gouuid
12
13## Usage
14
15See [documentation and examples](http://godoc.org/github.com/nu7hatch/gouuid)
16for more information.
17
18## Copyright
19
20Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch>. See [COPYING](https://github.com/nu7hatch/gouuid/tree/master/COPYING)
21file for details.
22