# 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)
}
# Functions
No description provided by the author
GenerateRandomBytes is used to generate random bytes of given size.
GenerateUUID is used to generate a random UUID.
Simple call.
No description provided by the author