UUID in Go: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://github.com/google/uuid =Internal= =Overview= <code>go.mod</code>: <syntaxhighlight lang='go'> require ( github.com/google/uuid v1.5.0 ) </syntaxhighlight...") |
|||
Line 2: | Line 2: | ||
* https://github.com/google/uuid | * https://github.com/google/uuid | ||
=Internal= | =Internal= | ||
* [[Go Code Examples#g4LY|Go Code Examples]] | |||
=Overview= | =Overview= | ||
<code>go.mod</code>: | <code>go.mod</code>: |
Revision as of 01:13, 21 December 2023
External
Internal
Overview
go.mod
:
require (
github.com/google/uuid v1.5.0
)
uuid := uuid.New()