https://github.com/kevincobain2000/go-human-uuid
Generate human readable UUID in GO
https://github.com/kevincobain2000/go-human-uuid
golang human-readable uuid uuid-generator
Last synced: 7 months ago
JSON representation
Generate human readable UUID in GO
- Host: GitHub
- URL: https://github.com/kevincobain2000/go-human-uuid
- Owner: kevincobain2000
- License: mit
- Created: 2024-03-20T13:17:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-11T01:35:32.000Z (9 months ago)
- Last Synced: 2025-01-28T22:30:45.323Z (8 months ago)
- Topics: golang, human-readable, uuid, uuid-generator
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Generate Human Readable UUID in GO.---
**UUID:** Generate human readable UUID in GO.
## Usage
```
DARAW
XAHAJ
LAXOQ
LUPUV
VECIQ
```**Generate with Options**
```go
import (
g github.com/kevincobain2000/go-human-uuid/lib
)func main() {
options := []g.Option{
func(opt *g.Options) error {
opt.Length = 10
return nil
},
}
gen, err := g.NewGenerator(options...)
gen.Generate()
}
```### Disclaimer