Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 255 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 255 Bytes

goseq

Sequence id generator in go, can be used to build a stand alone service.

Usage

$ go get github.com/FrontMage/goseq

import "github.com/FrontMage/goseq"

seq := &goseq.MemSequencer{}

for i:=0; i<10; i++{
    fmt.Println(seq.Next)
}