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.
- Host: GitHub
- URL: https://github.com/frontmage/goseq
- Owner: FrontMage
- License: apache-2.0
- Created: 2018-06-28T01:58:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-28T02:04:54.000Z (about 8 years ago)
- Last Synced: 2025-02-05T16:39:27.812Z (over 1 year ago)
- Topics: golang, golang-application, golang-library, golang-package, sequencer
- Language: Go
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
}
```