From 429fa92d5b90b2563958dbf8a77e7296c1e86b04 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Sat, 6 Nov 2021 23:46:13 -0700 Subject: [PATCH] initial commits --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3d44441 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# go-iid + +Package **iid** provides quazi‐ monotonically‐increasing unique‐identifiers. + + +## Documention + +Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-iid + +[![GoDoc](https://godoc.org/github.com/reiver/go-iid?status.svg)](https://godoc.org/github.com/reiver/go-iid) + + +## Example + +Here is an example of using `package iid`: +```go +var id iid.IID = iid.Generate() +```