Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 347 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 347 Bytes

uuid

The uuid package generates UUIDs based on RFC 4122: Time-Based UUID

Install

go get -u github.com/m7shapan/uuid

How to use

package main

import (
	"fmt"

	"github.com/m7shapan/uuid"
)

func main() {
	fmt.Println(uuid.NewUUID()) // 2bf08894-47a3978-bbdd8c85-70d16847
}