Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 191 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 191 Bytes

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