https://github.com/go-basic/uuid
简单的uuid
https://github.com/go-basic/uuid
go go-basic golang uuid
Last synced: 2 months ago
JSON representation
简单的uuid
- Host: GitHub
- URL: https://github.com/go-basic/uuid
- Owner: go-basic
- Created: 2020-05-08T06:27:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T10:26:06.000Z (almost 6 years ago)
- Last Synced: 2025-11-22T13:04:55.924Z (4 months ago)
- Topics: go, go-basic, golang, uuid
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
```
go get github.com/go-basic/uuid
```
## Example
```
package main
import (
"fmt"
"github.com/go-basic/uuid"
)
func main() {
uuid := uuid.New()
fmt.Println(uuid)
}
```