UUID in Go: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=External=
=External=
* https://github.com/google/uuid
* https://github.com/google/uuid
* https://pkg.go.dev/github.com/google/uuid
=Internal=
=Internal=
* [[Go Code Examples#g4LY|Go Code Examples]]
* [[Go Code Examples#g4LY|Go Code Examples]]

Revision as of 18:16, 1 February 2024

External

Internal

Overview

go.mod:

require (
	github.com/google/uuid v1.5.0
)
uuid := uuid.New()

Conversion of a string to UUID