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

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

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)
}
```