Skip to content

Latest commit

 

History

History

uuid

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

uuid

UUID generator based on https://github.com/sony/sonyflake

Usage

err := uuid.Init()
if err != nil {
    // error handling
}

id, err := uuid.Generate()
if err != nil {
    // error handling
}

fmt.Println(id)