mirror of
https://github.com/gwuhaolin/livego.git
synced 2021-06-01 09:10:22 +03:00
14 lines
189 B
Go
14 lines
189 B
Go
package uid
|
|
|
|
import (
|
|
"encoding/base64"
|
|
|
|
"github.com/satori/go.uuid"
|
|
)
|
|
|
|
func NewId() string {
|
|
id := uuid.NewV4()
|
|
b64 := base64.URLEncoding.EncodeToString(id.Bytes()[:12])
|
|
return b64
|
|
}
|