An open API service indexing awesome lists of open source software.

https://github.com/frontmage/goseq

Sequence id generator in go, can be used to build a stand alone service.
https://github.com/frontmage/goseq

golang golang-application golang-library golang-package sequencer

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

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

## Usage
`$ go get github.com/FrontMage/goseq`

```go
import "github.com/FrontMage/goseq"

seq := &goseq.MemSequencer{}

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