Categorygithub.com/go-basic/uuid
modulepackage
1.0.0
Repository: https://github.com/go-basic/uuid.git
Documentation: pkg.go.dev

# 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